2026-07-30 12:06:41 +08:00
|
|
|
import type { NextConfig } from "next";
|
2026-08-11 23:07:26 +08:00
|
|
|
import path from "node:path";
|
2026-07-30 12:06:41 +08:00
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-08-11 23:07:26 +08:00
|
|
|
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;
|