django:package:whitenoise
目录
whitenoise
whitenoise:静态文件管理
安装
- Bash
- uv add whitenoise
配置
基础配置
- Bash
- STATIC_URL = "static/"
- STATIC_ROOT = BASE_DIR / "staticfiles"
Middleware
- Python
- MIDDLEWARE = [
- # ...
- "django.middleware.security.SecurityMiddleware",
- "whitenoise.middleware.WhiteNoiseMiddleware",
- # ...
- ]
Storage
- Bash
- STORAGES = {
- # ...
- "staticfiles": {
- "BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage",
- },
- }
/storage/data/pages/django/package/whitenoise.txt · 最后更改: 由 bestony