spring:
cloud:
gateway:
globalcors:
cors-configurations:
'[/**]':
allowCredentials: true
allowedOrigins: '*'
allowedHeaders: '*'
allowedMethods:
- 'GET'
- 'POST'
- 'PUT'
- 'PATCH'
- 'DELETE'
- 'OPTIONS'
- 'HEAD'