mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-20 03:09:36 +03:00
16 lines
316 B
JavaScript
16 lines
316 B
JavaScript
module.exports = {
|
|
purge: [
|
|
"./components/**/*.{vue,js}",
|
|
"./layouts/**/*.vue",
|
|
"./pages/**/*.vue",
|
|
"./plugins/**/*.{js,ts}",
|
|
"./nuxt.config.{js,ts}",
|
|
],
|
|
mode: "jit",
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("@tailwindcss/forms")],
|
|
};
|