WebDemo/tailwind.config.js

13 lines
181 B
JavaScript
Raw Normal View History

2023-11-26 15:59:35 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{html,js}",
],
theme: {
extend: {},
},
plugins: [],
}