CloudProxy/next.config.mjs

16 lines
320 B
JavaScript
Raw Permalink Normal View History

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