vue.config.js 846 B

12345678910111213141516171819202122232425262728293031
  1. var px2rem = require('postcss-loader');
  2. module.exports = {
  3. // 配置 webpack-dev-server 行为。
  4. devServer: {
  5. open: process.platform === 'darwin',
  6. host: '0.0.0.0',
  7. port: 8080,
  8. https: false,
  9. hotOnly: false,
  10. // 查阅 https://github.com/vuejs/vue-docs-zh-cn/blob/master/vue-cli/cli-service.md#配置代理
  11. proxy: {
  12. '/api': {
  13. target: 'http://dnzk.baianxi.com',
  14. changeOrigin: true,
  15. secure: false,
  16. // ws: true,
  17. // pathRewrite: {
  18. // '^/api': '/' // 请求数据路径别名
  19. // }
  20. }
  21. },
  22. before: app => {}
  23. },
  24. // 三方插件的选项
  25. pluginOptions: {
  26. // ...
  27. },
  28. publicPath:'/',
  29. // assetsDir:"greenhouse"
  30. }