I'm working on DRF-spectacular. My question is how to disable Authorize Button in DRF-spectacular.
Are there any settings?
Add this value in your REST Framework, this is in settings.py
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': [],
'DEFAULT_PERMISSION_CLASSES': []
}