10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
darkMode: 'class',
|
||
|
|
content: ['./index.html', './src/**/*.{vue,js}'],
|
||
|
|
theme: {
|
||
|
|
extend: {},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
}
|