diff --git a/.eslintrc.js b/.eslintrc.cjs
similarity index 100%
rename from .eslintrc.js
rename to .eslintrc.cjs
diff --git a/Dockerfile b/Dockerfile
index 093ace78..6bf9dd2e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -52,10 +52,10 @@ WORKDIR /myapp
COPY --from=production-deps /myapp/node_modules /myapp/node_modules
COPY --from=build /myapp/node_modules/.prisma /myapp/node_modules/.prisma
-COPY --from=build /myapp/build /myapp/build
-COPY --from=build /myapp/public /myapp/public
+COPY --from=build /myapp/build/server /myapp/build/server
+COPY --from=build /myapp/build/client /myapp/build/client
COPY --from=build /myapp/package.json /myapp/package.json
COPY --from=build /myapp/start.sh /myapp/start.sh
COPY --from=build /myapp/prisma /myapp/prisma
-ENTRYPOINT [ "./start.sh" ]
+ENTRYPOINT [ "./start.sh" ]
\ No newline at end of file
diff --git a/app/root.tsx b/app/root.tsx
index 426fac35..88409941 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 type { LoaderFunctionArgs } from "@remix-run/node";
import { json } from "@remix-run/node";
import {
Links,
- LiveReload,
Meta,
Outlet,
Scripts,
@@ -11,12 +9,7 @@ import {
} from "@remix-run/react";
import { getUser } from "~/session.server";
-import stylesheet from "~/tailwind.css";
-
-export const links: LinksFunction = () => [
- { rel: "stylesheet", href: stylesheet },
- ...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
-];
+import "~/tailwind.css";
export const loader = async ({ request }: LoaderFunctionArgs) => {
return json({ user: await getUser(request) });
@@ -35,7 +28,6 @@ export default function App() {
-