My Middleman 4网站有250篇博文。
博客的数量使得livereload变得如此缓慢以至于无法使用(更新需要超过1分钟才能更新)
我删除了所有博客帖子,除了最近的三篇文章,事情又快了,但这不是一个好的解决方案。
答案 0 :(得分:1)
我通过使用Middleman的ignore file feature来解决这个问题。
我的config.rb
看起来像这样:
configure :development do
ignore /blog\/posts\/201[0-6]-[0-9][0-8].*.html/ # ignore everything before 2016-09
ignore /blog\/posts\/201[0-6]-[0-9][0-9]-[^2].*.html/ # ignore everything in september 2016 unless in the 20s.
end
如果我在Regex上做得更好,我可能会把它变成一个班轮 - 但我不是:)