import type { NextConfig } from "next"; /** * visionA Cloud 前端 Next.js 設定(Phase 0 雛形骨架) * * - output: "standalone" — 產出可搬移的獨立 server 資產,方便後續 Docker 部署 * - 不做 local-tool 的 rewrites(雲端版 API base URL 透過 NEXT_PUBLIC_API_BASE 決定, * 由 F5 任務實作 src/lib/api.ts 時在 runtime 處理) */ const nextConfig: NextConfig = { output: "standalone", reactStrictMode: true, }; export default nextConfig;