refactor: simplify next.config.mjs by removing experimental block for serverExternalPackages

This commit is contained in:
2025-06-20 23:21:34 +02:00
parent 68c6165b32
commit 7b4d5afb90

View File

@@ -2,10 +2,8 @@
const nextConfig = { const nextConfig = {
// Ensure the app works properly in Docker // Ensure the app works properly in Docker
output: "standalone", output: "standalone",
experimental: {
// This helps with hot reloading in Docker // This helps with hot reloading in Docker
serverComponentsExternalPackages: ["better-sqlite3"], serverExternalPackages: ["better-sqlite3"],
},
}; };
export default nextConfig; export default nextConfig;