You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
having activate :autoprefixer outside of the configure :build block causes bundle exec middleman server to never resolve a page request. It will sit there and hang for many, many hours, at least. I stopped the request before it resolved since it looked as if it would never do so.
Having the activate method within the build configuration block remedies the situation.
There is currently an issue with middleman-autoprefixer which causes
middleman to hang: middleman/middleman-autoprefixer#33
When this happens, middleman no longer responds to requests and does not
refresh on source changes.
Moving the `activate :autoprefixer` command into the `context.configure :build` block seems to fix this and middleman behaves normally.
On an app that looks like this:
having
activate :autoprefixer
outside of theconfigure :build
block causesbundle exec middleman server
to never resolve a page request. It will sit there and hang for many, many hours, at least. I stopped the request before it resolved since it looked as if it would never do so.Having the activate method within the build configuration block remedies the situation.
Nabbed this trick from middleman/middleman#2148
The text was updated successfully, but these errors were encountered: