13 lines
245 B
JavaScript
13 lines
245 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./src/**/*.{html,js,ts,jsx,tsx}"],
|
||
|
theme: {
|
||
|
extend: {}
|
||
|
},
|
||
|
plugins: [],
|
||
|
// v3 版本的 tailwindcss 有些不同
|
||
|
corePlugins: {
|
||
|
preflight: false
|
||
|
}
|
||
|
};
|