2022-12-18 16:18:30 +03:00
|
|
|
import { resolve } from "path";
|
2021-12-08 18:43:52 +03:00
|
|
|
import { defineConfig } from "vite";
|
2022-12-11 17:15:52 +03:00
|
|
|
import legacy from "@vitejs/plugin-legacy";
|
2022-12-11 13:38:29 +03:00
|
|
|
import react from "@vitejs/plugin-react-swc";
|
2021-12-08 18:43:52 +03:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2022-12-11 17:15:52 +03:00
|
|
|
plugins: [
|
|
|
|
react(),
|
|
|
|
legacy({
|
|
|
|
targets: ["defaults", "not IE 11"],
|
|
|
|
}),
|
|
|
|
],
|
2021-12-08 18:43:52 +03:00
|
|
|
server: {
|
2022-09-09 02:40:21 +03:00
|
|
|
host: "0.0.0.0",
|
2022-12-25 05:39:45 +03:00
|
|
|
port: 3001,
|
2021-12-08 18:43:52 +03:00
|
|
|
proxy: {
|
2022-12-11 13:38:29 +03:00
|
|
|
"^/api": {
|
2022-12-25 05:39:45 +03:00
|
|
|
target: "http://localhost:8081/",
|
2021-12-08 18:43:52 +03:00
|
|
|
changeOrigin: true,
|
|
|
|
},
|
2022-12-11 13:38:29 +03:00
|
|
|
"^/o/": {
|
2022-12-25 05:39:45 +03:00
|
|
|
target: "http://localhost:8081/",
|
2022-09-09 02:40:21 +03:00
|
|
|
changeOrigin: true,
|
|
|
|
},
|
2022-12-11 13:38:29 +03:00
|
|
|
"^/h/": {
|
2022-12-25 05:39:45 +03:00
|
|
|
target: "http://localhost:8081/",
|
2021-12-17 03:11:02 +03:00
|
|
|
changeOrigin: true,
|
|
|
|
},
|
2022-10-26 15:13:02 +03:00
|
|
|
"^/u/\\d*/rss.xml": {
|
2022-12-25 05:39:45 +03:00
|
|
|
target: "http://localhost:8081/",
|
2022-10-26 15:13:02 +03:00
|
|
|
changeOrigin: true,
|
|
|
|
},
|
2021-12-08 18:43:52 +03:00
|
|
|
},
|
|
|
|
},
|
2022-12-18 16:18:30 +03:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
"@/": `${resolve(__dirname, "src")}/`,
|
|
|
|
},
|
|
|
|
},
|
2021-12-08 18:43:52 +03:00
|
|
|
});
|