14 lines
306 B
TypeScript
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;
|