James Bradbury
James Bradbury

Reputation: 1768

Pelican theme CSS file is not copied to output

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

Answers (1)

kmonsoor
kmonsoor

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

Related Questions