addseed-web/next.config.mjs

16 lines
310 B
JavaScript

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