mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
5c88aa4fea
Signed-off-by: Julius Volz <julius.volz@gmail.com>
26 lines
585 B
TypeScript
26 lines
585 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",
|
|
},
|
|
// "/api": {
|
|
// target: "https://prometheus.demo.do.prometheus.io/",
|
|
// changeOrigin: true,
|
|
// },
|
|
// "/-/": {
|
|
// target: "https://prometheus.demo.do.prometheus.io/",
|
|
// changeOrigin: true,
|
|
// },
|
|
},
|
|
},
|
|
});
|