file-receive-client-web/tailwind.config.js

11 lines
185 B
JavaScript
Raw Normal View History

2023-12-12 17:14:30 +08:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}