Files
bracket/frontend/next.config.js
SevicheCC 78b6eab62b Add i18n support and translation for zh-CN (#394)
Relative issue: #223

---------

Co-authored-by: Erik Vroon <erik.vroon@channable.com>
Co-authored-by: Erik Vroon <erik.vroon22@gmail.com>
2023-12-28 19:15:41 +01:00

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,
});