merchant-web/tailwind.config.js

11 lines
187 B
JavaScript
Raw Normal View History

2024-08-05 08:26:35 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}