Merge pull request #62 from plers-org/sm/#58

🐛 Fix: [#58] settings.py STORAGES 스태틱파일 설정 변경
This commit is contained in:
NKEY
2025-05-20 00:31:12 +09:00
committed by GitHub

View File

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