UI-UX/next.config.ts
zyc c19b3b7b05
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 6m41s
ci: add CI/CD pipeline for cyberstar.airlabs.art
- 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>
2026-05-13 13:44:04 +08:00

11 lines
297 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// 关闭左下角的开发指示器dev overlay 角标)
devIndicators: false,
// 容器化部署:产出精简的 standalone 包node server.js 启动)
output: "standalone",
};
export default nextConfig;