MarketingMax/tailwind.config.js

13 lines
207 B
JavaScript
Raw Permalink Normal View History

2023-11-22 10:23:48 -08:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./pages/*.{vue,js,ts,jsx,tsx}",
"./components/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}