15 lines
301 B
JavaScript
15 lines
301 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ['./index.html', './src/views/common/screen-vue3/**/*.{vue,js,ts}'],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
// fontFamily: {
|
||
|
// sans: ['"Inter var"', ...defaultTheme.fontFamily.sans],
|
||
|
// },
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|
||
|
|
||
|
|