error handling + file size

This commit is contained in:
asabizanjo
2025-12-11 19:12:00 +00:00
parent ffd65ebca1
commit 237b34ac4f
3 changed files with 18 additions and 1 deletions

View File

@@ -4,6 +4,13 @@ const nextConfig: NextConfig = {
// Disable server/dev sourcemaps to avoid Windows source map parse warnings
productionBrowserSourceMaps: false,
// Allow large file uploads (up to 10GB)
experimental: {
serverActions: {
bodySizeLimit: "10gb",
},
},
webpack: (config, { dev, isServer }) => {
if (dev && isServer) {
config.devtool = false;