This commit is contained in:
2023-03-16 11:56:41 +00:00
commit 1dcb2b6c3d
49 changed files with 14668 additions and 0 deletions

10
next.config.js Normal file
View File

@@ -0,0 +1,10 @@
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
module.exports = withBundleAnalyzer({
reactStrictMode: false,
eslint: {
ignoreDuringBuilds: true,
},
});