2021-12-08 18:43:52 +03:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2022-09-26 16:40:37 +03:00
|
|
|
plugins: [react()],
|
2021-12-08 18:43:52 +03:00
|
|
|
server: {
|
2022-09-09 02:40:21 +03:00
|
|
|
host: "0.0.0.0",
|
2022-07-14 14:33:20 +03:00
|
|
|
port: 3000,
|
2021-12-08 18:43:52 +03:00
|
|
|
proxy: {
|
|
|
|
"/api": {
|
2022-02-04 14:17:11 +03:00
|
|
|
target: "http://localhost:8080/",
|
2021-12-08 18:43:52 +03:00
|
|
|
changeOrigin: true,
|
|
|
|
},
|
2022-09-09 02:40:21 +03:00
|
|
|
"/o/": {
|
|
|
|
target: "http://localhost:8080/",
|
|
|
|
changeOrigin: true,
|
|
|
|
},
|
2022-02-04 14:17:11 +03:00
|
|
|
"/h/": {
|
2022-02-05 19:13:15 +03:00
|
|
|
target: "http://localhost:8080/",
|
2021-12-17 03:11:02 +03:00
|
|
|
changeOrigin: true,
|
|
|
|
},
|
2022-10-26 15:13:02 +03:00
|
|
|
"^/u/\\d*/rss.xml": {
|
|
|
|
target: "http://localhost:8080/",
|
|
|
|
changeOrigin: true,
|
|
|
|
},
|
2021-12-08 18:43:52 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|