tianji/tailwind.config.js

12 lines
215 B
JavaScript
Raw Normal View History

2023-09-01 00:11:47 +08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
2023-09-02 00:52:43 +08:00
corePlugins: {
preflight: false,
},
2023-09-01 00:11:47 +08:00
plugins: [],
}