Files
data_visual/tailwind.config.js

11 lines
187 B
JavaScript
Raw Normal View History

2022-10-20 13:43:55 +08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}