You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
646 B
24 lines
646 B
const { defineConfig } = require("@vue/cli-service");
|
|
const { BASE_URL } = require("./src/config");
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
lintOnSave: false,
|
|
publicPath: BASE_URL,
|
|
devServer: {
|
|
port: 8080,
|
|
open: true, // vue项目启动时自动打开浏览器
|
|
proxy: {
|
|
"/api": {
|
|
target: "https://flowise.tsl3060.com",
|
|
changeOrigin: true, //是否跨域
|
|
logLevel: "debug",
|
|
bypass: function (req, res, proxyOptions) {
|
|
console.log(proxyOptions.target + req.url);
|
|
},
|
|
pathRewrite: {
|
|
// "^/api": "",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|