11 lines
300 B
JavaScript
11 lines
300 B
JavaScript
import path from 'path';
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
// 把 .next 目录改成 build/.next
|
|
distDir: 'build',
|
|
// 如果你希望所有页面都带尾部斜杠(可选)
|
|
trailingSlash: true,
|
|
};
|
|
export default nextConfig;
|