vue.config.js 238 B

123456789101112
  1. module.exports={
  2. devServer:{
  3. proxy:{
  4. '/api':{
  5. target:'http://shopms.zhenlaoxiang.com/',
  6. changeOrigin: true,
  7. }
  8. }
  9. },
  10. publicPath:'/',
  11. assetsDir:"admin"
  12. }