7 lines
179 B
TypeScript
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');
|
|
}
|