add tailwind dependency back for autocomplete

This commit is contained in:
2024-05-24 21:07:43 -05:00
parent 5795a4d192
commit b2fb853206
3 changed files with 1341 additions and 2 deletions
+1330 -1
View File
File diff suppressed because it is too large Load Diff
+2 -1
View File
@@ -21,6 +21,7 @@
},
"homepage": "https://github.com/jwetzell/showbridge#readme",
"devDependencies": {
"http-server": "^14.1.1"
"http-server": "^14.1.1",
"tailwindcss": "^3.4.3"
}
}
+9
View File
@@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['src/**/*.html'],
theme: {
extend: {},
},
plugins: [],
};