12345678910111213141516171819202122232425262728293031323334353637 |
- const {
- defineConfig
- } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- lintOnSave: false,
- //如果是hash模式, publicPath:"";如果是history, publicPath:"/"
- publicPath: "/",
- //打包的文件夹目录
- outputDir: "dist",
- // 打包之后的入口文件
- indexPath: "index.html",
- //静态资源目录
- assetsDir: "assets",
- //配置代理
- devServer: {
- proxy: {
- '/api': {
- target: 'https://gascylinder.baozhida.cn/gas_cylinder', //线上
- // target: 'http://gascylindertest.baozhida.cn/gas_cylinder', //测试
- ws: false,
- changeOrigin: true,
- pathRewrite: {
- '^/api': ''
- }
- },
- '/APP': {
- target: 'https://yunlot.baozhida.cn',
- ws: false,
- changeOrigin: true,
- pathRewrite: {
- '^/APP': '/API'
- }
- }
- }
- }
- })
|