mirror of
https://github.com/xmanrui/OpenClaw-bot-review.git
synced 2026-07-27 22:25:52 +00:00
- Enable Next.js standalone output for smaller image size - Remove unnecessary npm install in production stage - Use direct node execution instead of npm start - Add .dockerignore to exclude unnecessary files from build context
6 lines
116 B
JavaScript
6 lines
116 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
};
|
|
export default nextConfig;
|