13 lines
225 B
JavaScript
13 lines
225 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
experimental: {
|
|
instrumentationHook: false,
|
|
},
|
|
webpack: (config) => {
|
|
return config;
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|