mirror of
https://github.com/lstoeferle/vite-vue2-starter
synced 2025-02-22 20:42:15 +08:00
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class', // or 'media'
|
|
content: ['./index.html', './src/**/*.{vue,ts,js}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|