All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 6m41s
- Dockerfile: multi-stage Next.js standalone build with pnpm + prisma - k8s manifests: single web deployment + Traefik ingress + LE TLS - Gitea workflow: build/push to Volcano CR, deploy to K3s, log-center failure reporting - next.config: enable standalone output for slim container image Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
import type { NextConfig } from "next";
|
||
|
||
const nextConfig: NextConfig = {
|
||
// 关闭左下角的开发指示器(dev overlay 角标)
|
||
devIndicators: false,
|
||
// 容器化部署:产出精简的 standalone 包(node server.js 启动)
|
||
output: "standalone",
|
||
};
|
||
|
||
export default nextConfig;
|