8 lines
260 B
TypeScript
8 lines
260 B
TypeScript
import { redirect } from 'next/navigation'
|
|
|
|
// Immediate redirect to the first settings sub-page
|
|
// This avoids loading the heavy settings/page.tsx client component on first visit
|
|
export default function SettingsIndexPage() {
|
|
redirect('/settings/general')
|
|
}
|