/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
async redirects() {
return [
{
source: '/',
destination: '/zh/home',
permanent: true,
},
];
};
export default nextConfig;