Files
data_visual/tailwind.config.js

9 lines
176 B
JavaScript
Raw Permalink Normal View History

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