vue.config.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. 'use strict'
  2. const path = require('path')
  3. const defaultSettings = require('./src/settings.js')
  4. function resolve(dir) {
  5. return path.join(__dirname, dir)
  6. }
  7. const name = defaultSettings.title || '' // page title
  8. // If your port is set to 80,
  9. // use administrator privileges to execute the command line.
  10. // For example, Mac: sudo npm run
  11. // You can change the port by the following methods:
  12. // port = 9528 npm run dev OR npm run dev --port = 9528
  13. const port = process.env.port || process.env.npm_config_port || 9528 // dev port
  14. // All configuration item explanations can be find in https://cli.vuejs.org/config/
  15. module.exports = {
  16. /**
  17. * You will need to set publicPath if you plan to deploy your site under a sub path,
  18. * for example GitHub Pages. If you plan to deploy your site to https://foo.github.io/bar/,
  19. * then publicPath should be set to "/bar/".
  20. * In most cases please use '/' !!!
  21. * Detail: https://cli.vuejs.org/config/#publicpath
  22. */
  23. publicPath: './',
  24. outputDir: 'dist',
  25. assetsDir: 'static',
  26. lintOnSave: process.env.NODE_ENV === 'development',
  27. productionSourceMap: false,
  28. devServer: {
  29. port: port,
  30. open: true,
  31. overlay: {
  32. warnings: false,
  33. errors: true
  34. },
  35. proxy: {
  36. '/dev-api': {
  37. // 此处的写法,目的是为了 将 /api 替换成 https://www.baidu.com/
  38. // target: 'http://ca.midsk.cn:8080',
  39. target: 'http://106.14.243.117:8080',
  40. // target: '10.211.66.25:8074',
  41. // target: 'http://192.168.3.67:8092',
  42. // target: 'http://10.9.247.105:8092',
  43. // target: 'http://127.0.0.1:4523/mock/528199',
  44. // 允许跨域
  45. changeOrigin: true,
  46. ws: true,
  47. pathRewrite: {
  48. ['^' + '/dev-api']: ''
  49. }
  50. }
  51. }
  52. // before: require('./mock/mock-server.js')
  53. },
  54. }