diff --git a/resumai/settings/base.py b/resumai/settings/base.py index 060ec5b..f29231d 100644 --- a/resumai/settings/base.py +++ b/resumai/settings/base.py @@ -169,13 +169,17 @@ # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/5.0/howto/static-files/ +STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') + STATIC_URL = '/static/' -STATICFILES_DIRS = ( - os.path.join('staticfiles/'), -) +STATICFILES_DIRS = [ + os.path.join(BASE_DIR, 'myapp/static'), + # 여기에 추가적인 정적 파일 디렉토리 경로를 추가할 수 있습니다. +] # Default primary key field type # https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField" +SITE_ID = 1