I'm facing a frustrating issue where changes I make in my CSS file are not reloading properly.
The style.css file in PhpStorm appears as:
body {
background-color: blue;
}
However, when viewed in Chrome it shows:
body {
background-color: green;
}
What's strange is that if I update style.css to "foo bar testing,"
Chrome displays it as:
body {
backgrou
In addition, dumping a lot of random text into style.css results in Chrome displaying:
body {
background-color: green;
}
...etc
So Chrome seems to recognize the changes but somehow sticks with the original content.
The Twig options I have configured are:
$app['twig.options'] = array('cache' => false, 'auto_reload' => true);
I've also attempted adding ?{{ random() }}
to style.css to force a reload, but it hasn't worked.