Files
DevToysWeb/next.config.mjs
2024-05-17 13:55:37 +02:00

12 lines
282 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
typedRoutes: true,
},
};
export default process.env.ANALYZE === "true"
? (await import("@next/bundle-analyzer")).default({ enabled: true })(nextConfig)
: nextConfig;