CloudProxy/next.config.mjs
2025-09-15 18:30:09 +08:00

16 lines
320 B
JavaScript

import path from 'path';
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
distDir: 'build',
async rewrites() {
return [
{
source: '/',
destination: '/zh-CN',
},
];
},
};
export default nextConfig;