Anyone got any examples of add cors to azure funct...
# azure
n
Anyone got any examples of add cors to azure function, got myself a little bit stuck
t
There is a
cors
block under
siteConfig
. Does it give you trouble?
n
Copy code
SiteConfig = {
                  new FunctionAppSiteConfigCorsArgs
                  {
                    AllowedOrigins = "<https://google.co.uk>",  
                  },
                },
am i going going right way?
t
I think so
n
thanks you put me right path, Awesome