synctv-web/tailwind.config.js

15 lines
229 B
JavaScript
Raw Permalink Normal View History

2023-10-04 05:57:28 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
important: true,
darkMode: 'class',
}