corrierifrontend/vite.config.ts
AV77web ea7f5d18f1
All checks were successful
Deploy to VPS / build (push) Successful in 20s
Deploy to VPS / deploy (push) Successful in 19s
installato Tailwind, configurato shadcn/ui e creati i suoi componenti: button,card,input e label
2026-06-24 18:40:09 +02:00

14 lines
332 B
TypeScript

import path from "path";
import tailwindcss from "@tailwindcss/vite";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});