This commit is contained in:
2025-12-18 00:32:45 +01:00
parent 52da147761
commit a41a72fb0d
378 changed files with 340 additions and 30813 deletions

View File

@@ -1,6 +1,12 @@
/** @type {import('next').Config} */
const nextConfig = {
/* config options here */
productionBrowserSourceMaps: false,
webpack: (config, { isServer }) => {
if (isServer) {
config.devtool = false;
}
return config;
},
};
export default nextConfig;