From 2cf0194c70de284a6f439fcb5984a16b46cffdd1 Mon Sep 17 00:00:00 2001 From: Divya Patel <113757574+Divya4242@users.noreply.github.com> Date: Fri, 29 Mar 2024 12:03:27 +0530 Subject: [PATCH] Update app.js --- server/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app.js b/server/app.js index c98a21c..9d82c2f 100644 --- a/server/app.js +++ b/server/app.js @@ -3,7 +3,7 @@ const app = express(); const path = require('path'); var cors = require('cors') app.use(cors({ - origin: [ 'https://tag.devopswithdivya.me/' , '*' ] + origin: [ '*' , 'https://tag.devopswithdivya.me' ] })) app.use(express.json());