Deno Oak Disable Cors

前端 未结 4 757
陌清茗
陌清茗 2021-01-15 11:40

I am trying to \'connect\' my small React JS app with my Deno API backend on my local environment with fetch().

   con         


        
4条回答
  •  鱼传尺愫
    2021-01-15 12:18

    For me, I had to first pass oakCors configuration to the app and then the routes.

    app.use(oakCors({
        origin: 'http://localhost:4200',
        optionsSuccessStatus: 200,
    }));
    app.use(router.routes());
    

提交回复
热议问题