Set up tailwindcss and daisyui

This commit is contained in:
Ahmed Al-Taiar
2024-08-07 23:20:36 -04:00
parent 746a443ccd
commit 14c20d4315
12 changed files with 527 additions and 28 deletions

View File

@ -5,7 +5,7 @@
// https://www.prisma.io/docs/orm/prisma-migrate
datasource db {
provider = "sqlite"
provider = "postgresql"
url = env("DATABASE_URL")
}
@ -13,12 +13,3 @@ generator client {
provider = "prisma-client-js"
binaryTargets = "native"
}
// Define your own datamodels here and run `yarn redwood prisma migrate dev`
// to create migrations for them and apply to your dev DB.
// TODO: Please remove the following example:
model UserExample {
id Int @id @default(autoincrement())
email String @unique
name String?
}