NanoBananaShow/src/app/page.tsx
2024-07-08 18:37:12 +08:00

7 lines
179 B
TypeScript

import {redirect} from 'next/navigation';
// This page only renders when the app is built statically (output: 'export')
export default function RootPage() {
redirect('/en');
}