Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
chore(remix) : upgrade Remix to 2.9.2
Browse files Browse the repository at this point in the history
- system build with vite
  • Loading branch information
kasterra committed May 24, 2024
1 parent c5b7b1e commit 8f604b6
Show file tree
Hide file tree
Showing 9 changed files with 403 additions and 796 deletions.
18 changes: 0 additions & 18 deletions app/entry.client.tsx

This file was deleted.

140 changes: 0 additions & 140 deletions app/entry.server.tsx

This file was deleted.

10 changes: 3 additions & 7 deletions app/root.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import { cssBundleHref } from "@remix-run/css-bundle";
import type { LinksFunction } from "@remix-run/node";
import normailzeCSS from "./css/normalize.css";
import fontsCSS from "./css/fonts.css";
import globalCSS from "./css/global.css";
import normailzeCSS from "./css/normalize.css?url";
import fontsCSS from "./css/fonts.css?url";
import globalCSS from "./css/global.css?url";
import {
Links,
LiveReload,
Meta,
Outlet,
Scripts,
Expand All @@ -20,7 +18,6 @@ export const links: LinksFunction = () => [
{ rel: "stylesheet", href: normailzeCSS },
{ rel: "stylesheet", href: fontsCSS },
{ rel: "stylesheet", href: globalCSS },
...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
];

export default function App() {
Expand Down Expand Up @@ -53,7 +50,6 @@ export default function App() {
</AuthProvider>
<ScrollRestoration />
<Scripts />
<LiveReload />
</body>
</html>
);
Expand Down
2 changes: 1 addition & 1 deletion remix.env.d.ts → env.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// <reference types="@remix-run/dev" />
/// <reference types="vite/client" />
/// <reference types="@remix-run/node" />
Loading

0 comments on commit 8f604b6

Please sign in to comment.