2025-10-07 19:16:01 +01:00
|
|
|
import { defineConfig } from "vite"
|
|
|
|
|
import path from "path"
|
|
|
|
|
import tailwindcss from "@tailwindcss/vite"
|
|
|
|
|
import react from "@vitejs/plugin-react-swc" // Changed this line
|
2025-07-14 16:59:59 +01:00
|
|
|
|
|
|
|
|
// https://vite.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react(), tailwindcss()],
|
|
|
|
|
resolve: {
|
|
|
|
|
alias: {
|
|
|
|
|
"@": path.resolve(__dirname, "./src"),
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-10-07 19:16:01 +01:00
|
|
|
})
|