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
HTML5 offline gets annoying, and why not just completely turn it off when in development? There should be an option to turn it on, for basic testing, but otherwise it just gets in the way.
This can easily be done by returning a 404 on the request for the appcache.
Note: this is also how you can make an html5 offline app no longer an offline app, and instead like a regular website.
The text was updated successfully, but these errors were encountered:
If you want it disabled temporarily in development, I would just comment out the line in your routes.rb. If you want it permanently disabled in development, but still active in production, wrap it in if Rails.env.production?
HTML5 offline gets annoying, and why not just completely turn it off when in development? There should be an option to turn it on, for basic testing, but otherwise it just gets in the way.
This can easily be done by returning a 404 on the request for the appcache.
Note: this is also how you can make an html5 offline app no longer an offline app, and instead like a regular website.
The text was updated successfully, but these errors were encountered: