vue.config.js 2.2 KB

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