Hello
Let’s say I have three app: app1, app2, app3, and would like to get my static files independently
What should be the syntax in settings.py ?
> STATIC_URL = '/static/'
>
> STATICFILES_DIRS = (
> os.path.join(BASE_DIR, "static"),
> '/app1/static/',
> '/app2/static/',
> '/app3/static/',
> )
Then in each templates/web files, does it mean I just need
<script src="{% static 'start.js' %}"></script>
or do I need to specify more ?