调整目录

This commit is contained in:
mlogclub
2026-04-24 12:01:30 +08:00
parent 7889ecb0d2
commit a9275c2d4a
209 changed files with 0 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
import type { NextConfig } from "next"
import { PHASE_DEVELOPMENT_SERVER } from "next/constants"
const backendBaseUrl =
process.env.NEXT_PUBLIC_API_BASE_URL?.trim() || "http://127.0.0.1:8083"
const productionBasePath = ""
export default function nextConfig(phase: string): NextConfig {
const config: NextConfig = {
output: "export",
basePath: productionBasePath,
assetPrefix: `${productionBasePath}/`,
trailingSlash: true,
}
if (phase !== PHASE_DEVELOPMENT_SERVER) {
return config
}
return {
...config,
async rewrites() {
return [
{
source: "/api/:path*",
destination: `${backendBaseUrl}/api/:path*`,
},
{
source: "/storage/:path*",
destination: `${backendBaseUrl}/storage/:path*`,
},
]
},
}
}