Deliver parsers, events, analytics, and PI management in Vue; fix Telegram session mount and map navigation to events by eventId. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
import { defineConfig } from "vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
proxy: {
|
|
"/api": "http://localhost:8000",
|
|
"/admin": "http://localhost:8000",
|
|
},
|
|
},
|
|
});
|