list-of-lp/next.config.ts
m4x809 ba4f78b27a
Refactor Dockerfile and update Next.js configuration for improved build process
- Simplified the Dockerfile by consolidating dependency installation and streamlining the multi-stage build process.
- Changed the base image for the builder and runner stages to `node:22-slim` for better compatibility.
- Updated the Next.js configuration to remove the standalone output option and added a production start script in package.json.
2025-10-25 09:53:48 +02:00

11 lines
194 B
TypeScript

const nextConfig: import("next").NextConfig = {
experimental: {
viewTransition: true,
},
typescript: {
ignoreBuildErrors: true,
},
reactCompiler: true,
};
module.exports = nextConfig;