gpt4 book ai didi

vue.js - 关闭 Nuxt 应用程序中的 webpack-hot-middleware 客户端覆盖

转载 作者:搜寻专家 更新时间:2023-10-30 22:49:35 24 4
gpt4 key购买 nike

我试图在我的 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com