This commit is contained in:
asabizanjo
2025-12-11 01:05:24 +00:00
parent c713d58f98
commit 423ce1bc6d
88 changed files with 4081 additions and 122 deletions

View File

@@ -1,7 +1,18 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
// Disable server/dev sourcemaps to avoid Windows source map parse warnings
productionBrowserSourceMaps: false,
webpack: (config, { dev, isServer }) => {
if (dev && isServer) {
config.devtool = false;
}
return config;
},
// Acknowledge Turbopack config to silence migration warning
turbopack: {},
};
export default nextConfig;