mirror of
https://github.com/rustfs/console.git
synced 2026-08-28 19:47:21 +08:00
15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const defaultBasePath = process.env.NODE_ENV === "development" ? "" : "/rustfs/console"
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH ?? defaultBasePath,
|
|
trailingSlash: true,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|