Skip to content

Commit f039f88

Browse files
authored
revert #6 (#7)
1 parent 7269247 commit f039f88

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

frontend/src/routes/__root.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// src/routes/__root.tsx
2+
/// <reference types="vite/client" />
3+
14
import { ReactNode, StrictMode } from "react";
25
import {
36
HeadContent,
@@ -10,6 +13,7 @@ import { TanStackRouterDevtools } from "@tanstack/react-router-devtools";
1013
import { DefaultCatchBoundary } from "~/components/DefaultCatchBoundary";
1114
import Navbar from "~/components/Navbar";
1215
import { NotFound } from "~/components/NotFound";
16+
import appCss from "~/styles/app.css?url";
1317
import { seo } from "~/utils/seo";
1418
import { ThemeProvider, initialTheme } from "../components/ThemeProvider";
1519
import { 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",

0 commit comments

Comments
 (0)