vue.config.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. let targetUrl = 'http://mteadev.dayaedu.com'
  2. // let targetUrl = 'http://dyme.utools.club'
  3. // let targetUrl = 'https://online.dayaedu.com'
  4. // let targetUrl = 'http://testadm.dayaedu.com/'
  5. // let targetUrl = 'http://192.168.3.48:8080'
  6. module.exports = {
  7. publicPath: './',
  8. // 生产环境 sourceMap
  9. productionSourceMap: false,
  10. // 调整内部的 webpack 配置。
  11. // 查阅 https://github.com/vuejs/vue-doc-zh-cn/vue-cli/webpack.md
  12. chainWebpack: config => {
  13. config.plugin('html').tap(args => {
  14. args[0].minify = {
  15. removeAttributeQuotes: false
  16. }
  17. return args
  18. })
  19. },
  20. configureWebpack: () => { },
  21. // 配置 webpack-dev-server 行为。
  22. devServer: {
  23. open: process.platform === 'darwin',
  24. host: '0.0.0.0',
  25. port: 9999,
  26. https: false,
  27. hotOnly: false,
  28. // 查阅 https://github.com/vuejs/vue-doc-zh-cn/vue-cli/cli-service.md#配置代理
  29. proxy: {
  30. '/contracts': {
  31. target: targetUrl,
  32. changeOrigin: true,
  33. ws: true,
  34. '^/contracts': '/contracts',
  35. xfwd: true
  36. },
  37. '/api-student': {
  38. target: targetUrl,
  39. changeOrigin: true,
  40. ws: true,
  41. '^/api-student': '/api-student',
  42. xfwd: true
  43. },
  44. '/api-cms': {
  45. target: targetUrl,
  46. changeOrigin: true,
  47. ws: true,
  48. '^/api-cms': '/api-cms',
  49. xfwd: true
  50. },
  51. '/api-teacher': {
  52. target: targetUrl,
  53. changeOrigin: true,
  54. ws: true,
  55. '^/api-teacher': '/api-teacher',
  56. xfwd: true
  57. },
  58. '/api-web': {
  59. target: targetUrl,
  60. changeOrigin: true,
  61. ws: true,
  62. '^/api-web': '/api-web',
  63. xfwd: true
  64. },
  65. '/api-auth': {
  66. target: targetUrl,
  67. changeOrigin: true,
  68. ws: true,
  69. '^/api-auth': '/api-auth',
  70. xfwd: true
  71. }
  72. }, // string | Object
  73. },
  74. css: {
  75. loaderOptions: {
  76. less: {
  77. modifyVars: {
  78. // red: '#03a9f4',
  79. blue: '#14928A',
  80. // orange: '#f08d49',
  81. // 'text-color': '#111'
  82. }
  83. }
  84. }
  85. },
  86. }