This commit is contained in:
2023-03-16 14:11:46 +00:00
parent 1dcb2b6c3d
commit 53128a92de
22 changed files with 358 additions and 68 deletions

View File

@@ -1,5 +1,6 @@
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
// eslint-disable-next-line @typescript-eslint/no-var-requires
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
});
module.exports = withBundleAnalyzer({
@@ -7,4 +8,5 @@ module.exports = withBundleAnalyzer({
eslint: {
ignoreDuringBuilds: true,
},
output: "standalone",
});