[Answered ]-How to collect Django static files with the same name?

2πŸ‘

βœ…

If you don’t want the static files to be getting in each others way, give them their own name space by creating a suitable folder structure. Example

app1/static/css/app1/mycss.css
app2/static/css/app2/mycss.css

Alternatively if you want to combine all the CSS into one big CSS look into django-compressor

πŸ‘€e4c5

Leave a comment