addseed-web/next.config.mjs

16 lines
310 B
JavaScript
Raw Normal View History

2024-10-12 17:05:06 +08:00
/** @type {import('next').NextConfig} */
2024-10-13 23:01:45 +08:00
const nextConfig = {
output: 'export',
async redirects() {
return [
{
source: '/',
destination: '/zh/home',
permanent: true,
},
];
},
2024-10-13 23:01:45 +08:00
};
2024-10-12 17:05:06 +08:00
export default nextConfig;