Prefix Route
Prefix Route
A prefix route is a folder that contains routes but has no main.tsx of its own. The folder acts as a path prefix for organizing related routes without rendering a layout.
Current Path
/features/routing/settings/appearanceFile Structure
routes/
features/
routing/
settings/ ← No main.tsx (prefix only)
appearance.tsx ← You are here
theme.tsx ← Another route under settingsTip: Prefix routes are useful for grouping related pages under a common URL prefix without needing a shared layout.