12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./public/**/*.html', './src/**/*.{js,jsx,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
variants: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
}
|