feat(frontend): 步骤 6.2 — 配置文件(next.config.ts、tsconfig.json、postcss.config.mjs)

This commit is contained in:
hhs
2026-06-10 15:23:18 +08:00
parent 0662165c77
commit a6667e0a33
3 changed files with 48 additions and 0 deletions

7
frontend/next.config.ts Normal file
View File

@@ -0,0 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
};
export default nextConfig;