1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-27 00:25:22 +00:00

static_root and static_dirs fix

This commit is contained in:
catborise 2023-10-30 15:36:40 +03:00
parent 9755f307a6
commit 6974eae62e

View file

@ -123,12 +123,13 @@ USE_TZ = True
STATIC_URL = "/static/" STATIC_URL = "/static/"
if not DEBUG: if not DEBUG:
STATIC_ROOT = Path.joinpath(BASE_DIR, "static") STATIC_ROOT = ""
else:
STATICFILES_DIRS = [ STATICFILES_DIRS = [
Path.joinpath(BASE_DIR, "static"), Path.joinpath(BASE_DIR, "static"),
] ]
BS_ICONS_CACHE = Path.joinpath(BASE_DIR, 'static/icon_cache') BS_ICONS_CACHE = Path.joinpath(BASE_DIR, 'static/icon_cache')
# Default primary key field type # Default primary key field type