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