mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 04:59:24 +00:00
14 lines
327 B
JavaScript
14 lines
327 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
typedRoutes: true,
|
|
reactCompiler: true,
|
|
},
|
|
};
|
|
|
|
export default process.env.ANALYZE === "true"
|
|
? (await import("@next/bundle-analyzer")).default({ enabled: true })(nextConfig)
|
|
: nextConfig;
|