Amezui React编译错误在网页上提示怎么实现?

发布于 2022-09-03 13:02:34 字数 234 浏览 11 评论 0


如图:
clipboard.png

Amaze React版运行gulp后命令后,编译报错会在网页显示,感觉很方便,就是不知道使用哪个插件实现的,各位有了解的吗?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉生梦死 2022-09-10 13:02:34

找到解决方法了。确实是webpack-hot-middleware自带的功能,只不过不能配合webpack-dev-server,可以配合gulp或express使用。

Additionally, webpack-hot-middleware displays syntax errors in an overlay, which WebpackDevServer doesn’t do.
However, you can use WebpackDevServer instead of the custom server just fine.

具体的可以参考Github工程:react-transform-boilerplate

PS:使用react-hot-loader

图片描述

猫九 2022-09-10 13:02:34

那是因为amazeui-react用了webpack-hot-middleware

你可以参考其中的config => overlay配置:

  • path - The path which the middleware is serving the event stream on

  • timeout - The time to wait after a disconnection before attempting to reconnect

  • overlay - Set to false to disable the DOM-based client-side overlay.

  • reload - Set to true to auto-reload the page when webpack gets stuck.

  • noInfo - Set to true to disable informational console logging.

  • quiet - Set to true to disable all console logging.

  • dynamicPublicPath - Set to true to use webpack publicPath as prefix of path. (We can set __webpack_public_path__ dynamically at runtime in the entry point, see note of output.publicPath)

其中,如果你把overlay设置成false,如下:

webpack-hot-middleware/client?reload=true&overlay=false

错误遮罩就没了。如果想看遮罩源码(我没研究过),但应该是这里client-overlay.js

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文