next.config.js 294 B

123456789101112131415
  1. const withBundleAnalyzer = require("@next/bundle-analyzer")({
  2. enabled: process.env.ANALYZE === "true",
  3. });
  4. /**
  5. * @type {import('next').NextConfig}
  6. */
  7. const config = {
  8. reactStrictMode: false,
  9. compiler: {
  10. styledComponents: true,
  11. },
  12. };
  13. module.exports = withBundleAnalyzer(config);