I am using Jhipster to generate API.
My api is on lets call it :
and my FE app is on :
Here is my config for Cors enable in application-prod.yml
cors:
allowed-origins: "https://staging.test.com/"
allowed-methods: "*"
allowed-headers: GET, PUT, POST, DELETE, OPTIONS
exposed-headers: "Authorization,Link,X-Total-Count"
allow-credentials: true
max-age: 1800
I still get this error :
Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://staging.test.com' is therefore not allowed access. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
Is there anything more that needs to be done in Spring boot to enable CORS ?
cors
key should be underjhipster
, is it that way in your application-prod.yml? – Jon Ruddell