vue.config.js 431 B

12345678910111213141516171819
  1. /*
  2. * @Author : yuanrunwei
  3. * @Date : 2020-06-10 15:38:47
  4. * @LastEditors: XuTongZhang
  5. * @LastEditTime: 2020-07-29 10:45:35
  6. * @FilePath : \batterycloud-admin\vue.config.js
  7. */
  8. module.exports = {
  9. transpileDependencies: [/node_modules[/\\\\](vuex|)[/\\\\]/],
  10. publicPath: './',
  11. runtimeCompiler: true,
  12. productionSourceMap: false,
  13. devServer: {
  14. host: '127.0.0.1',
  15. https: false,
  16. open: true
  17. }
  18. }