1234567891011121314151617181920212223 |
- /*
- * @Author: error: git config user.name && git config user.email & please set dead value or install git
- * @Date: 2022-07-09 17:02:28
- * @LastEditors: error: git config user.name && git config user.email & please set dead value or install git
- * @LastEditTime: 2022-07-25 10:28:27
- * @FilePath: \caiyang\vue.config.js
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- */
- const { defineConfig } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- devServer: {
- proxy:{
- '/api':{
- target:'http://192.168.0.101:8080/',
- changeOrigin:true,
- pathRewrite:{
- '^/api':''
- }
- }
- }
- }
- })
|