Initial project setup.

Using Vue 3 and TailwindCSS (with PostCSS configuration)
This commit is contained in:
Atharva Sawant
2024-10-15 14:30:00 +05:30
commit 98e4cebb4b
10 changed files with 2925 additions and 0 deletions

12
tailwind.config.js Normal file
View File

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