Files
koc-loop/koc-portal/next.config.ts
2026-08-11 23:07:26 +08:00

14 lines
306 B
TypeScript

import type { NextConfig } from "next";
import path from "node:path";
const nextConfig: NextConfig = {
output: "export",
basePath: "/koc",
assetPrefix: "/koc",
trailingSlash: true,
images: { unoptimized: true },
turbopack: { root: path.resolve(process.cwd()) },
};
export default nextConfig;