refactor: upgrade to vite

This commit is contained in:
Andrea
2024-04-10 15:55:06 +02:00
parent 675c3c5976
commit 873c8c7745
11 changed files with 2890 additions and 67 deletions

View File

@@ -1,9 +1,8 @@
import codeHikeStyle from "@code-hike/mdx/dist/index.css";
import codeHikeStyle from "@code-hike/mdx/dist/index.css?url";
import type { LinksFunction, MetaFunction } from "@remix-run/node";
import {
Link,
Links,
LiveReload,
Meta,
Outlet,
Scripts,
@@ -11,7 +10,7 @@ import {
isRouteErrorResponse,
useRouteError,
} from "@remix-run/react";
import stylesheet from "~/tailwind.css";
import stylesheet from "~/tailwind.css?url";
import { Body } from "./components/Body";
import { LinkWrapper } from "./components/LinkWrapper";
import { Notbyai } from "./components/Notbyai";
@@ -46,7 +45,6 @@ export default function App() {
<Notbyai />
<ScrollRestoration />
<Scripts />
<LiveReload />
</Body>
</html>
);