2024-10-12 17:05:06 +08:00
|
|
|
/** @type {import('next').NextConfig} */
|
2024-10-13 23:01:45 +08:00
|
|
|
const nextConfig = {
|
2024-10-16 16:45:16 +08:00
|
|
|
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;
|