2025-08-13 14:23:48 +01:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
|
|
|
|
|
|
// https://vite.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react(), tailwindcss()],
|
2025-10-08 11:08:41 +01:00
|
|
|
server: {
|
|
|
|
|
host: true,
|
|
|
|
|
proxy: {
|
|
|
|
|
"/api": {
|
|
|
|
|
target: "http://100.118.196.113:8080",
|
|
|
|
|
changeOrigin: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-09-26 11:42:12 +01:00
|
|
|
base: "/Mobile",
|
2025-08-13 14:23:48 +01:00
|
|
|
});
|