Files
gen_short_link/tailwind.config.js

12 lines
186 B
JavaScript
Raw Normal View History

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