Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

HTML5 boilerplate is currently being used on a site that I'm working on. I'm in the process of developing my site and having to clear the browser's cache now and then is slowing down my development speed.

Javascript files seem to be cached and I suspect its due to one of the configuration in html5 boilerplate. How should I disable the caching?

share|improve this question
If you're running an apache server check the .htaccess near Expires headers – Adam Merrifield Sep 3 '12 at 21:07

1 Answer

up vote 1 down vote accepted

If the site is using the .htaccess file as distributed in the HTML5 boilerplate package, edit the line

ExpiresByType application/javascript    "access plus 1 year"

so that you replace 1 year by 0 seconds in your development environment.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.