12345678910111213141516 |
- const withBundleAnalyzer = require("@next/bundle-analyzer")({
- enabled: process.env.ANALYZE === "true",
- });
- /**
- * @type {import('next').NextConfig}
- */
- const config = {
- reactStrictMode: false,
- productionBrowserSourceMaps: true,
- compiler: {
- styledComponents: true,
- },
- };
- module.exports = withBundleAnalyzer(config);
|