Files
koc-loop/koc-portal/next.config.ts

14 lines
306 B
TypeScript
Raw Permalink Normal View History

2026-07-30 12:06:41 +08:00
import type { NextConfig } from "next";
import path from "node:path";
2026-07-30 12:06:41 +08:00
const nextConfig: NextConfig = {
output: "export",
basePath: "/koc",
assetPrefix: "/koc",
trailingSlash: true,
images: { unoptimized: true },
turbopack: { root: path.resolve(process.cwd()) },
2026-07-30 12:06:41 +08:00
};
export default nextConfig;