module.exports = { publicPath: "/entpc", productionSourceMap: false, lintOnSave: false, css:{ loaderOptions:{ sass: { prependData: `@import "@/style/global_variable.scss";`// 全局引入 }, } }, devServer: { open: true, port: "8086", hot: true, proxy: { "/api": { target: "https://app2-jytest.jianyu360.cn/entbase", changeOrigin: true, pathRewrite: { "^/api": "" } } } } }