mirror of
https://github.com/rustfs/console.git
synced 2026-09-01 15:17:45 +08:00
13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH ?? "/rustfs/console",
|
|
trailingSlash: true,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|