mirror of
https://github.com/ChiChou/entdb.git
synced 2026-06-10 23:07:47 +02:00
12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const basePath = process.env.NEXT_PUBLIC_BASE_PATH || "";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
basePath,
|
|
assetPrefix: basePath || undefined,
|
|
};
|
|
|
|
export default nextConfig;
|