Add jquery.cookie to static files.

This commit is contained in:
Julien Palard 2023-01-21 17:37:49 +01:00
parent 9698325e14
commit 9292862fe4
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
1 changed files with 1 additions and 0 deletions

View File

@ -140,6 +140,7 @@ MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
STATIC_URL = '/static/'
STATICFILES_DIRS = [
('jquery', os.path.join(BASE_DIR, 'node_modules/jquery/dist/')),
('jquery.cookie', os.path.join(BASE_DIR, 'node_modules/jquery.cookie/')),
]
LOGIN_REDIRECT_URL = 'home'