2025-05-21 00:52:41 +02:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
|
import tailwindcss from "@tailwindcss/vite";
|
2025-05-20 23:54:48 +02:00
|
|
|
|
|
|
|
|
// https://vite.dev/config/
|
|
|
|
|
export default defineConfig({
|
2025-05-21 00:52:41 +02:00
|
|
|
plugins: [react(), tailwindcss()],
|
2025-06-06 14:17:36 +02:00
|
|
|
server: {
|
|
|
|
|
port: 3001,
|
|
|
|
|
open: "src/front/index.html",
|
|
|
|
|
},
|
2025-06-06 14:20:04 +02:00
|
|
|
build: {
|
|
|
|
|
rollupOptions: {
|
|
|
|
|
input: {
|
|
|
|
|
main: 'src/front/index.html',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-05-21 00:52:41 +02:00
|
|
|
});
|