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