Skip to content

Commit

Permalink
copied prisma files from fakebooks site, installed prisma and ts-node…
Browse files Browse the repository at this point in the history
…, ran npx prisma db seed and npx prisma db push
  • Loading branch information
brittneypostma committed Aug 12, 2022
1 parent 925e751 commit 10d4f9a
Show file tree
Hide file tree
Showing 10 changed files with 2,241 additions and 442 deletions.
4 changes: 2 additions & 2 deletions app/root.tsx
Expand Up @@ -13,15 +13,15 @@ import {
ScrollRestoration,
} from "@remix-run/react";

import tailwindStylesheetUrl from "./styles/tailwind.css";
import styles from "./styles/app.css";
import { getUser } from "./session.server";

export const meta: MetaFunction = () => {
return { title: "New Remix App" };
};

export const links: LinksFunction = () => {
return [{ rel: "stylesheet", href: tailwindStylesheetUrl }];
return [{ rel: "stylesheet", href: styles }];
};

export const loader: LoaderFunction = async ({ request }) => {
Expand Down

0 comments on commit 10d4f9a

Please sign in to comment.