12345678910111213141516171819202122 |
- const { defineConfig } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- publicPath:'./',
-
-
- devServer:{
- port:'8080',
- proxy:{
- '/api':{
- target:'http://124.70.137.152:8095',
-
- changeOrigin:true,
- pathRewrite:{
- '^/api':'/'
- }
- }
- }
- },
- })
|