Updated to nextjs v16

This commit is contained in:
2025-10-29 18:21:09 +01:00
parent b713008819
commit aac3fcd3b9
13 changed files with 600 additions and 484 deletions

View File

@@ -1,16 +1,13 @@
import type { NextConfig } from "next"
const nextConfig: NextConfig = {
reactCompiler: {
compilationMode: "all"
},
cacheComponents: true,
output: process.env.DOCKER === "1" ? "standalone" : undefined,
typedRoutes: true,
eslint: {
ignoreDuringBuilds: true
},
experimental: {
useCache: true,
reactCompiler: {
compilationMode: "all"
},
browserDebugInfoInTerminal: true
}
}