Files
shop/frontend/admin/vite.config.ts
Marek Lenczewski e3e88cc58e wahnsinn vibe
2026-04-16 19:42:06 +02:00

16 lines
323 B
TypeScript

import vue from "@vitejs/plugin-vue";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [vue()],
server: {
host: true,
port: 5174,
proxy: {
"/api": "http://localhost:8000",
"/uploads": "http://localhost:8000",
"/health": "http://localhost:8000",
},
},
});