From 9292862fe4ae7e319b735e3fd1085dd59ab4f5d8 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Sat, 21 Jan 2023 17:37:49 +0100 Subject: [PATCH] Add jquery.cookie to static files. --- ponyconf/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ponyconf/settings.py b/ponyconf/settings.py index 505142e..c41d590 100644 --- a/ponyconf/settings.py +++ b/ponyconf/settings.py @@ -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'