Files
ds-pages/next.config.js
2023-03-16 14:11:46 +00:00

13 lines
312 B
JavaScript

// eslint-disable-next-line @typescript-eslint/no-var-requires
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
});
module.exports = withBundleAnalyzer({
reactStrictMode: false,
eslint: {
ignoreDuringBuilds: true,
},
output: "standalone",
});