vue.config.js 436 B

12345678910111213141516171819202122
  1. module.exports = {
  2. publicPath: '/',
  3. devServer: {
  4. clientLogLevel: 'warning',
  5. // historyApiFallback: {
  6. // index: '/',
  7. // disableDotRule: true,
  8. // verbose: true
  9. // },
  10. // hot: true,
  11. // contentBase: 'dist',
  12. // compress: true,
  13. host: '0.0.0.0',
  14. port: 8988,
  15. disableHostCheck: true,
  16. publicPath: '/',
  17. // quiet: false,
  18. watchOptions: {
  19. ignored: /node_modules/
  20. }
  21. }
  22. }