Bojan Đurđević

Results 4 comments of Bojan Đurđević

I had the same problem. Short explanation is that `preact-cli` expects 2 hardcoded entries for prerendering, and you'll get this error if you don't provide them. If I'm not mistaken,...

I've tested this on Linux, node v13.3.0. Everything worked fine. It might not be possible to reproduce on Linux. Here's my `preact info`: ``` Environment Info: System: OS: Linux 5.4...

Try this: ``` function disableDrag() { $('.grid-item').draggable('disable'); $('.grid-item').bind('dragstart', gridItemDisableHandler); } function enableDrag() { $('.grid-item').draggable('enable'); $('.grid-item').unbind('dragstart', gridItemDisableHandler); } ``` Note that you have to add `grid-item` class to the items.

+1. I don't want to set the same cache value for my html and images