vue.config.js 603 B

1234567891011121314151617181920212223242526272829
  1. const path = require('path');
  2. module.exports = {
  3. pages: {
  4. index: {
  5. entry: "src/main.js",
  6. },
  7. },
  8. lintOnSave: false,
  9. configureWebpack: {
  10. resolve: {
  11. alias: {
  12. '@': path.join(__dirname, 'src')
  13. },
  14. },
  15. },
  16. transpileDependencies:['@dcloudio/uni-ui'],
  17. devServer: {
  18. // open: process.platform === 'darwin',
  19. // 启动服务的ip和端口 localhost能自动启动本机ip host: '0.0.0.0'
  20. host: '0.0.0.0',
  21. port: 8888,
  22. proxy: {
  23. '/ws/geocoder': {
  24. target: 'https://apis.map.qq.com',
  25. changeOrigin: true,
  26. }
  27. },
  28. },
  29. }