Files
pangolin/next.config.ts
2026-05-15 18:35:58 +00:00

13 lines
296 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
reactStrictMode: false,
reactCompiler: true,
output: "standalone"
};
export default withNextIntl(nextConfig);