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