mirror of
https://github.com/evroon/bracket.git
synced 2026-01-18 19:18:48 -05:00
Relative issue: #223 --------- Co-authored-by: Erik Vroon <erik.vroon@channable.com> Co-authored-by: Erik Vroon <erik.vroon22@gmail.com>
13 lines
287 B
JavaScript
13 lines
287 B
JavaScript
const { i18n } = require('./next-i18next.config.js');
|
|
const withBundleAnalyzer = require('@next/bundle-analyzer')({
|
|
enabled: process.env.ANALYZE === 'true',
|
|
});
|
|
|
|
module.exports = withBundleAnalyzer({
|
|
reactStrictMode: false,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
i18n,
|
|
});
|