This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#wr 配置当前应用的默认配置类
# 当Django加载该应用时,若未在INSTALLED_APPS中显式指定配置类,会自动使用此处指定的配置类
# 'djangoblog.apps.DjangoblogAppConfig' 表示配置类的完整路径:
# - djangoblog:应用名称
# - apps:存放配置类的模块
# - DjangoblogAppConfig:具体的配置类(通常包含应用初始化、信号注册等逻辑)
default_app_config = 'djangoblog.apps.DjangoblogAppConfig'