[Answer]-Why my django static file have number in the end

1👍

Seems like your project uses one of the asset managers. I suspect you can find it in the INSTALLED_APPS setting.

UPDATE: By default the django-pipeline does this magic then the DEBUG = False. Which is the case for your development environment.

The other setting to enable/disable the pipeline is the PIPELINE_ENABLED. So you can have the “normal” file names on the production server too. But I suggest you to leave the pipeline enabled 🙂

Leave a comment