Amezui React编译错误在网页上提示怎么实现?
如图:
Amaze React版运行gulp
后命令后,编译报错会在网页显示,感觉很方便,就是不知道使用哪个插件实现的,各位有了解的吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如图:
Amaze React版运行gulp
后命令后,编译报错会在网页显示,感觉很方便,就是不知道使用哪个插件实现的,各位有了解的吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
找到解决方法了。确实是
webpack-hot-middleware
自带的功能,只不过不能配合webpack-dev-server
,可以配合gulp或express使用。具体的可以参考Github工程:react-transform-boilerplate
那是因为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 webpackpublicPath
as prefix ofpath
. (We can set__webpack_public_path__
dynamically at runtime in the entry point, see note of output.publicPath)其中,如果你把
overlay
设置成false
,如下:错误遮罩就没了。如果想看遮罩源码(我没研究过),但应该是这里client-overlay.js