fix tailwindcss building in site

This commit is contained in:
2025-03-24 15:08:25 -05:00
parent 306993e0d0
commit bf8fef26f3
3 changed files with 982 additions and 5 deletions
+978
View File
File diff suppressed because it is too large Load Diff
+3 -2
View File
@@ -4,7 +4,7 @@
"description": "www.showbrigde.io", "description": "www.showbrigde.io",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"tailwind": "tailwindcss build -i tailwind.css -o src/assets/css/tailwind.css", "tailwind": "tailwindcss -i tailwind.css -o src/assets/css/tailwind.css",
"dev": "http-server src/" "dev": "http-server src/"
}, },
"author": { "author": {
@@ -23,6 +23,7 @@
"homepage": "https://github.com/jwetzell/showbridge#readme", "homepage": "https://github.com/jwetzell/showbridge#readme",
"devDependencies": { "devDependencies": {
"http-server": "14.1.1", "http-server": "14.1.1",
"tailwindcss": "4.0.14" "tailwindcss": "4.0.14",
"@tailwindcss/cli": "4.0.14"
} }
} }
+1 -3
View File
@@ -1,3 +1 @@
@tailwind base; @import 'tailwindcss';
@tailwind components;
@tailwind utilities;