2

Is there any way on speeding up wamp server as my css is not updating every refresh?

Comments
  • 5
    Disable caching for css files.
  • 2
    Just select the no cache option in your browser dev tools and keep it open while refreshing.
  • 0
    assign a random number to the end of the link to the css file

    /css/styles.css?v=‘Generate random number’
  • 4
    @helloworld actually don't. Append version number you increase when actually changing stuff, otherwise you'll make the cache completely useless.
    For developing disable caching in the dev tools
Add Comment