Files
gen_short_link/tailwind.config.js

9 lines
176 B
JavaScript
Raw Normal View History

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