File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1+ // src/routes/__root.tsx
2+ /// <reference types="vite/client" />
3+
14import { ReactNode , StrictMode } from "react" ;
25import {
36 HeadContent ,
@@ -10,6 +13,7 @@ import { TanStackRouterDevtools } from "@tanstack/react-router-devtools";
1013import { DefaultCatchBoundary } from "~/components/DefaultCatchBoundary" ;
1114import Navbar from "~/components/Navbar" ;
1215import { NotFound } from "~/components/NotFound" ;
16+ import appCss from "~/styles/app.css?url" ;
1317import { seo } from "~/utils/seo" ;
1418import { ThemeProvider , initialTheme } from "../components/ThemeProvider" ;
1519import { MotionConfig } from "framer-motion" ;
@@ -32,7 +36,7 @@ export const Route = createRootRoute({
3236 ] ,
3337 scripts : [ initialTheme ( ) ] ,
3438 links : [
35- { rel : "stylesheet" , href : "~styles/app.css?url" } ,
39+ { rel : "stylesheet" , href : appCss } ,
3640 {
3741 rel : "apple-touch-icon" ,
3842 sizes : "180x180" ,
You can’t perform that action at this time.
0 commit comments