vue.config.js 637 B

1234567891011121314151617181920212223242526272829303132
  1. module.exports = {
  2. chainWebpack: config => {
  3. // GraphQL Loader
  4. config.module
  5. .rule('graphql')
  6. .test(/\.gql$/)
  7. .use('graphql-tag/loader')
  8. .loader('graphql-tag/loader')
  9. .end()
  10. },
  11. publicPath: '/',
  12. devServer: {
  13. clientLogLevel: 'warning',
  14. // historyApiFallback: {
  15. // index: '/',
  16. // disableDotRule: true,
  17. // verbose: true
  18. // },
  19. // hot: true,
  20. // contentBase: 'dist',
  21. // compress: true,
  22. host: '0.0.0.0',
  23. port: 8988,
  24. disableHostCheck: true,
  25. publicPath: '/',
  26. // quiet: false,
  27. watchOptions: {
  28. ignored: /node_modules/
  29. }
  30. }
  31. }