2025-05-10 08:40:40 +00:00
|
|
|
import tailwindcss from "@tailwindcss/vite";
|
2025-05-27 17:47:03 +00:00
|
|
|
import react from "@vitejs/plugin-react";
|
2025-09-22 08:13:59 +00:00
|
|
|
import path from "node:path";
|
2025-05-27 17:47:03 +00:00
|
|
|
import { defineConfig } from "vite";
|
2025-05-02 21:43:51 +00:00
|
|
|
|
2025-05-05 09:27:00 +00:00
|
|
|
// https://vite.dev/config/
|
2025-05-02 21:43:51 +00:00
|
|
|
export default defineConfig({
|
2025-09-22 08:13:59 +00:00
|
|
|
build: {
|
|
|
|
|
sourcemap: true,
|
|
|
|
|
},
|
2025-05-28 14:21:09 +00:00
|
|
|
plugins: [react(), tailwindcss()],
|
2025-05-09 10:45:32 +00:00
|
|
|
resolve: {
|
|
|
|
|
alias: {
|
|
|
|
|
"@": path.resolve(__dirname, "./src"),
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-05-02 21:43:51 +00:00
|
|
|
});
|