Files
Keep/keep-notes/app/(main)/settings/page.tsx
2026-04-17 21:14:43 +02:00

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')
}