| 123456789101112131415161718192021 |
- const { defineConfig } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- })
- module.exports = {
- publicPath: '',
- devServer: process.env.NODE_ENV == 'development'?{
- proxy: {
- '/api': {
- // target: 'https://mall.zhiqiyun.com',
- target: 'http://mptest.zhiqiyun.com',
- // target: 'http://kyytest.zhiqiyun.com',
- changeOrigin: true,
- pathRewrite: {
- '^/api': ''
- }
- }
- }
- }:{}
- }
|