This template should help get you started developing with Vue 3 in Vite.
VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
See Vite Configuration Reference.
npm installnpm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -pmodule.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
colors: {
white: "hsl(0, 0%, 100%)",
Lightgray: "hsl(212, 45%, 89%)",
Grayishblue: "hsl(220, 15%, 55%)",
Darkblue: "hsl(218, 44%, 22%)",
},
},
plugins: [],
}npm run devnpm run build