list-of-lp/next.config.ts
m4x809 25d212f884
Add Docker support with Dockerfile and .dockerignore
- Introduced a Dockerfile for building and running the Next.js application using Bun.
- Configured multi-stage builds for optimized dependency management and production setup.
- Added a .dockerignore file to exclude unnecessary files from the Docker context, improving build efficiency.
2025-10-25 03:37:05 +02:00

12 lines
217 B
TypeScript

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