mirror of
https://github.com/fosrl/pangolin.git
synced 2026-01-28 13:50:43 +00:00
18 lines
380 B
TypeScript
18 lines
380 B
TypeScript
import type { NextConfig } from "next";
|
|
import createNextIntlPlugin from "next-intl/plugin";
|
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: false,
|
|
eslint: {
|
|
ignoreDuringBuilds: true
|
|
},
|
|
experimental: {
|
|
reactCompiler: true
|
|
},
|
|
output: "standalone"
|
|
};
|
|
|
|
export default withNextIntl(nextConfig);
|