ultisuite-client/app/mail/[[...segments]]/page.tsx
R3D347HR4Y d6d18f911b
Some checks failed
E2E / Playwright e2e (push) Has been cancelled
Lots of stuff and mobile app
2026-06-17 00:13:28 +02:00

12 lines
418 B
TypeScript

/** Route catch-all : toute l'interface est rendue par `app/mail/layout.tsx` pour conserver le state React entre changements d'URL. */
// Static export (mobile): pre-render the shell at the segment root; deeper
// paths are handled client-side by the Next router + native deep-links.
export function generateStaticParams() {
return [{ segments: [] }]
}
export default function MailSegmentsPage() {
return null
}