feat(docker): Docker build with multi-stage

This will significantly reduce the size of the final image used for deployment.
This commit is contained in:
yuzhiheng
2025-09-04 15:11:13 +08:00
parent b35f0effe5
commit dc1659463e
2 changed files with 12 additions and 6 deletions

View File

@ -16,6 +16,7 @@ const nextConfig = {
// https://nextjs.org/docs/api-reference/next.config.js/ignoring-typescript-errors
ignoreBuildErrors: true,
},
output: 'standalone',
}
module.exports = nextConfig