mirror of
https://github.com/hpcaitech/Open-Sora.git
synced 2026-04-15 03:15:20 +02:00
8 lines
231 B
JavaScript
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;
|