forked from lxh/go-wxhelper
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx,md}'],
|
||
|
theme: {
|
||
|
container: {
|
||
|
center: true,
|
||
|
padding: '2rem',
|
||
|
},
|
||
|
},
|
||
|
plugins: [require('daisyui'), require('@tailwindcss/forms'),],
|
||
|
}
|
||
|
|