skeleton@2025.1.6
·
435 commits
to main
since this release
Patch Changes
-
Moved the
Layoutcomponent back intoroot.tsxto avoid issues with styled errors. (#2829) by @ruggishop-
If you have a separate
app/layout.tsxfile, delete it and move its default exported component into yourroot.tsx. For example:// /app/root.tsx export function Layout({children}: {children?: React.ReactNode}) { const nonce = useNonce(); const data = useRouteLoaderData<RootLoader>('root'); return ( <html lang="en"> ... ); }
-