diff options
author | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-12-01 13:16:35 +0100 |
---|---|---|
committer | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-12-01 13:26:43 +0100 |
commit | c6c5f094c41b0a024f052ce2350872490f60a73a (patch) | |
tree | 69514eb15bcc9f89f4c8e0ec564344121fe388a5 /tailwind.config.js | |
parent | 3951173441bcb511c8f8ae383002e6992e6409a8 (diff) |
feat: replace vidstack with Media Chrome
Diffstat (limited to 'tailwind.config.js')
-rw-r--r-- | tailwind.config.js | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/tailwind.config.js b/tailwind.config.js index b695cbb..06e1f0e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,4 +1,3 @@ -/** @type {import('tailwindcss').Config} */ module.exports = { content: ["./src/**/*.{html,js,cljs}"], darkMode: "class", @@ -8,12 +7,9 @@ module.exports = { "nunito-sans": ["Nunito Sans", "sans-serif"], }, screens: { - "xs": "480px", + xs: "480px", }, }, }, - plugins: [ - require("@tailwindcss/forms"), - require("@vidstack/react/tailwind.cjs") - ], -} + plugins: [require("@tailwindcss/forms")], +}; |