mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-13 19:47:45 +00:00
17 lines
352 B
TypeScript
17 lines
352 B
TypeScript
import type { NextConfig } from "next";
|
|
import createNextIntlPlugin from "next-intl/plugin";
|
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
const nextConfig: NextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true
|
|
},
|
|
experimental: {
|
|
reactCompiler: true
|
|
},
|
|
output: "standalone"
|
|
};
|
|
|
|
export default withNextIntl(nextConfig);
|