Reputation: 1768
I'm running pelican locally on my ubuntu machine, inside a venv as suggested in the docs. I'm using the following command to run it.
pelican content/ -s pelicanconf.py -t themes/simple/ --autoreload --listen
When I make changes to .html templates, these are then shown in the output. However, if I change the .css file(s), the changes are not shown in the output and the CSS file in output/theme/css still has yesterday's timestamp on it, even tho I updated it a few seconds ago.
Things I've noticed:
Upvotes: 1
Views: 419
Reputation: 8119
It's probably happening on the browser.
After re-building the output
folder, don't forget to "hard" refresh the page, usually with CTRL+SHIFT+r
Upvotes: 2