qcast-front/next.config.mjs
yoosangwook a4c1b28c8d chore: Enable reactStrictMode in next.config.js
strictMode 기능 활성화했고 false로 세팅함
2024-07-31 10:59:56 +09:00

16 lines
395 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
webpack: (config) => {
config.externals.push({
"utf-8-validate": "commonjs utf-8-validate",
bufferutil: "commonjs bufferutil",
canvas: "commonjs canvas",
});
// config.infrastructureLogging = { debug: /PackFileCache/ };
return config;
},
};
export default nextConfig;