mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-12 16:44:05 -08:00
cacfc693c4
Signed-off-by: Julius Volz <julius.volz@gmail.com>
18 lines
334 B
TypeScript
18 lines
334 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:9090",
|
|
},
|
|
"/-/": {
|
|
target: "http://localhost:9090",
|
|
},
|
|
},
|
|
},
|
|
});
|