Init template

This commit is contained in:
Vitaly Rtishchev
2023-05-28 10:55:11 +04:00
commit f63101a095
28 changed files with 11915 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,
},
});