Performance: Browsable API interface
MEDIUM IMPACT
This affects the initial page load speed and interaction responsiveness of the API documentation interface.
REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': [
'rest_framework.renderers.JSONRenderer',
'rest_framework.renderers.BrowsableAPIRenderer',
]
}REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': [
'rest_framework.renderers.JSONRenderer',
]
}| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Without Browsable API | Minimal DOM nodes | 0-1 reflows | Low paint cost | [OK] Good |
| With Browsable API | Additional DOM nodes for UI | 1-2 reflows | Moderate paint cost | [!] Caution |