Files
next-app-template/next.config.js
Vitaly Rtishchev f63101a095 Init template
2023-05-28 10:55:11 +04:00

11 lines
225 B
JavaScript

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