This commit is contained in:
2021-02-23 01:19:38 +00:00
parent 25c9cf25f7
commit 8756e7f880

View File

@@ -230,9 +230,9 @@ DATETIME_INPUT_FORMATS = ('%Y-%m-%dT%H:%M', '%Y-%m-%dT%H:%M:%S')
# Static files (CSS, JavaScript, Images)
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
STATIC_URL = '/static/'
STATIC_ROOT = BASE_DIR / 'static/'
STATIC_ROOT = str(BASE_DIR / 'static/')
STATICFILES_DIRS = [
BASE_DIR / 'pipeline/built_assets',
str(BASE_DIR / 'pipeline/built_assets'),
]
TEMPLATES = [