Open-Sora/next.config.mjs
2024-04-27 13:11:11 +08:00

10 lines
286 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
basePath: "/Open-Sora",
assetPrefix: "/Open-Sora",
output: "export", // Outputs a Single-Page Application (SPA).
distDir: "./build", // Changes the build output directory to `./dist/`.
};
export default nextConfig;