Files
TrackMap/tailwind.config.js
Atharva Sawant 98e4cebb4b Initial project setup.
Using Vue 3 and TailwindCSS (with PostCSS configuration)
2024-10-15 14:30:00 +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: [],
}