Files
TrackMap/tailwind.config.js
Atharva Sawant a025b41c5f Initial project setup.
Using Vue 3 and TailwindCSS (with PostCSS configuration)
2025-08-27 00:15:07 +05:30

13 lines
187 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}