mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 16:30:25 +08:00
12 lines
240 B
JavaScript
12 lines
240 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
module.exports = {
|
||
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
||
|
|
theme: {
|
||
|
|
extend: {},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
corePlugins: {
|
||
|
|
preflight: false,
|
||
|
|
},
|
||
|
|
};
|