Fix Widget Position not working in Preview (#458)

* update tailwindconfig to fix widget in preview

* remove prisma studio from database package scripts
This commit is contained in:
Matti Nannt
2023-06-30 16:46:53 +02:00
committed by GitHub
parent d67858e2ea
commit aa80eb5d96
2 changed files with 2 additions and 2 deletions

View File

@@ -20,8 +20,7 @@
"generate": "prisma generate",
"lint": "eslint ./src --fix",
"prebuild": "npm run generate",
"predev": "npm run generate",
"studio": "prisma studio"
"predev": "npm run generate"
},
"dependencies": {
"@prisma/client": "^4.16.1",

View File

@@ -4,6 +4,7 @@ module.exports = {
"./app/**/*.{js,ts,jsx,tsx}", // Note the addition of the `app` directory.
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./lib/**/*.{js,ts,jsx,tsx}",
// include packages if not transpiling
"../../packages/ui/components/**/*.{js,ts,jsx,tsx}",
],