The solution from this question did not work for me. And another answer suggests that firebase deploy does not overwrite the same CSS file. I'm able to deploy a new CSS file with a new name. But I'd like to keep the same CSS file, make changes, and deploy it again. Would this be possible?
Asked
Active
Viewed 317 times
1 Answers
1
All files that have changes will be deployed. The changes are detected by the checksum
.
The name doesn't matter. As James More wrote on his comment here:
now is "will only deploy files with different checksums".
Do you experience a behaviour other than that? One thing you should consider is the CSS Cache in Browsers. It can get very tricky. Even when you update the CSS the Page shows the old one.

Tarik Huber
- 7,061
- 2
- 12
- 18
-
Clearing the cache worked. But how can I help users clear their caches? – writer_typer May 27 '21 at 21:21
-
1It will happen automaicaly in the future. Maybe this can help you a little bit with that problem: https://css-tricks.com/can-we-prevent-css-caching/ – Tarik Huber May 27 '21 at 21:26
-
Great idea. I may try using version numbers. – writer_typer May 28 '21 at 01:48