How can you handle static files in a Django project?
Question :
How can you handle static files in a Django project?
Django uses the STATICFILES_DIRS setting to specify additional directories from which to collect static files. The collectstatic management command is then used to gather static files from all specified locations into a single directory. During deployment, a web server (e.g., Nginx, Apache) is typically configured to serve these static files.