vue.config.js 389 B

12345678910111213141516
  1. module.exports = {
  2. baseUrl: './',
  3. assetsDir: 'static',
  4. productionSourceMap: false,
  5. // devServer: {
  6. // proxy: {
  7. // '/api':{
  8. // target:'http://jsonplaceholder.typicode.com',
  9. // changeOrigin:true,
  10. // pathRewrite:{
  11. // '/api':''
  12. // }
  13. // }
  14. // }
  15. // }
  16. }