tianji/tailwind.config.js

12 lines
215 B
JavaScript
Raw Permalink Normal View History

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