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