FutureCloud/next.config.mjs

11 lines
300 B
JavaScript
Raw Normal View History

2025-09-15 16:58:31 +08:00
import path from 'path';
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
// 把 .next 目录改成 build/.next
distDir: 'build',
// 如果你希望所有页面都带尾部斜杠(可选)
trailingSlash: true,
};
export default nextConfig;