diff --git a/.gitignore b/.gitignore
index 6a4c3f9b..b8eb17c9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,8 +9,10 @@ yarn.lock
node_modules
/build
+/server-build
/public/build
.env
+.cache
/cypress/screenshots
/cypress/videos
diff --git a/app/root.tsx b/app/root.tsx
index 426fac35..65cbe617 100644
--- a/app/root.tsx
+++ b/app/root.tsx
@@ -1,9 +1,7 @@
-import { cssBundleHref } from "@remix-run/css-bundle";
import type { LinksFunction, LoaderFunctionArgs } from "@remix-run/node";
import { json } from "@remix-run/node";
import {
Links,
- LiveReload,
Meta,
Outlet,
Scripts,
@@ -11,11 +9,10 @@ import {
} from "@remix-run/react";
import { getUser } from "~/session.server";
-import stylesheet from "~/tailwind.css";
+import stylesheet from "~/tailwind.css?url";
export const links: LinksFunction = () => [
{ rel: "stylesheet", href: stylesheet },
- ...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
];
export const loader = async ({ request }: LoaderFunctionArgs) => {
@@ -35,7 +32,6 @@ export default function App() {
-