mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-25 19:12:48 +00:00
- 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.
11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
const nextConfig: import("next").NextConfig = {
|
|
experimental: {
|
|
viewTransition: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
reactCompiler: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|