fosrl.pangolin/next.config.mjs

14 lines
286 B
JavaScript
Raw Permalink Normal View History

2025-05-25 19:01:20 +00:00
import createNextIntlPlugin from "next-intl/plugin";
2025-05-04 15:11:42 +00:00
const withNextIntl = createNextIntlPlugin();
2025-05-25 19:01:20 +00:00
/** @type {import("next").NextConfig} */
const nextConfig = {
eslint: {
2025-05-04 15:11:42 +00:00
ignoreDuringBuilds: true
2025-03-08 18:11:39 -05:00
},
2025-05-25 19:01:20 +00:00
output: "standalone"
};
2024-09-27 19:48:49 -04:00
2025-05-04 15:11:42 +00:00
export default withNextIntl(nextConfig);