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