Open-Sora/next.config.mjs
2024-04-27 12:25:06 +08:00

8 lines
231 B
JavaScript

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