vue.config.js 760 B

12345678910111213141516171819202122232425262728293031
  1. module.exports = {
  2. publicPath: '',
  3. productionSourceMap: false,
  4. devServer: {
  5. port: 8080,
  6. open: true,
  7. disableHostCheck: true,
  8. proxy: { //配置跨域
  9. '/api': {
  10. target: 'https://out.yoqi.me/',
  11. ws: false,
  12. changOrigin: true, //允许跨域
  13. pathRewrite: {
  14. '^/api': ''
  15. }
  16. }
  17. }
  18. },
  19. configureWebpack: {
  20. resolve: {
  21. alias: {
  22. // '@': 'src',
  23. assets: '@/assets',
  24. common: '@/common',
  25. components: '@/components',
  26. api: '@/api',
  27. views: '@/views'
  28. }
  29. }
  30. }
  31. };