How to enable CORS #1627
-
How can I enable the CORS when using Data API Builder? I know that when I make a Static Web App, I can add the globalHeaders settings in staticwebapp.config.json -file, like this:
But how can I do the similar settings in Data API Builder? I'm getting this error because the CORS is not enabled:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
CORS can be enabled by declaring a The Here's the link to the docs that describes the |
Beta Was this translation helpful? Give feedback.
CORS can be enabled by declaring a
cors
field within thehost
element in the config file.The
--cors-origin
option of theinit
command can be used to setup the allowed origins. Init command optionsHere's the link to the docs that describes the
host
section of the config file: Host element docs