15 lines
243 B
JavaScript
15 lines
243 B
JavaScript
![]() |
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./src/**/*.{js,jsx,ts,tsx}",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
corePlugins: {
|
||
|
preflight: false, //禁止tailwindcss的默认属性
|
||
|
}
|
||
|
}
|
||
|
|