🐛 Fix: [#58] settings.py STORAGES 스태틱파일 설정 변경

This commit is contained in:
sm4640
2025-05-20 00:30:02 +09:00
parent e46a8638a1
commit 7d711f4224

View File

@@ -129,7 +129,9 @@ STORAGES = {
"default": {
"BACKEND": "storages.backends.s3boto3.S3Boto3Storage",
},
"staticfiles": "storages.backends.s3boto3.S3Boto3Storage",
"staticfiles": {
"BACKEND": "storages.backends.s3boto3.S3StaticStorage",
},
}