我正在尝试在Nuxt应用程序中关闭webpack-hot-middleware的覆盖。

我尝试在nuxt.config.js中编辑配置,但是覆盖仍然存在。

  build: {
    // turn off client overlay when errors are present
    hotMiddleware: {
      overlay: false
    },
    /*
    ** You can extend webpack config here
    */
    extend(config, ctx) {
      // Run ESLint on save
      if (ctx.isDev && ctx.isClient) {
        config.module.rules.push({
          enforce: 'pre',
          test: /\.(js|vue)$/,
          loader: 'eslint-loader',
          exclude: /(node_modules)/
        });
      }
    }
  }

最佳答案

如果查看this PR,那么您需要这样做:

  build: {
    hotMiddleware: {
      client: {
        // turn off client overlay when errors are present
        overlay: false
      }
    }
  }

它对我有用(Nuxt 2.8.1)。

关于vue.js - 在Nuxt应用程序中关闭webpack-hot-middleware客户端覆盖,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56709366/

10-15 03:22