2021-11-08 17:04:38 +08:00
|
|
|
import { defineConfig } from "vite"
|
|
|
|
|
import vue from "@vitejs/plugin-vue"
|
|
|
|
|
import path from "path"
|
2021-07-19 17:36:48 +08:00
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [vue()],
|
|
|
|
|
resolve: {
|
|
|
|
|
alias: {
|
|
|
|
|
"@": path.resolve(__dirname, "src"),
|
|
|
|
|
},
|
|
|
|
|
},
|
2021-10-11 12:06:53 +08:00
|
|
|
server: {
|
|
|
|
|
host: "0.0.0.0", //允许本机
|
|
|
|
|
proxy: {
|
|
|
|
|
// string shorthand
|
|
|
|
|
"/mt": {
|
|
|
|
|
target: "http://mt.myalger.top",
|
|
|
|
|
changeOrigin: true,
|
|
|
|
|
rewrite: (path) => path.replace(/^\/mt/, ""),
|
|
|
|
|
},
|
|
|
|
|
// with options
|
|
|
|
|
"/api": {
|
|
|
|
|
target: "http://123.56.226.179:3000",
|
|
|
|
|
changeOrigin: true,
|
|
|
|
|
rewrite: (path) => path.replace(/^\/api/, ""),
|
|
|
|
|
},
|
2021-11-08 17:04:38 +08:00
|
|
|
"/music": {
|
|
|
|
|
target: "http://myalger.top:4000",
|
|
|
|
|
changeOrigin: true,
|
|
|
|
|
rewrite: (path) => path.replace(/^\/music/, ""),
|
|
|
|
|
},
|
2021-10-11 12:06:53 +08:00
|
|
|
},
|
|
|
|
|
},
|
2021-11-08 17:04:38 +08:00
|
|
|
})
|