From 709fcbe0a294ba813c873d5218b552885a7ca1e2 Mon Sep 17 00:00:00 2001 From: Tan Hoang Date: Sat, 19 Aug 2023 11:53:16 +0700 Subject: [PATCH] Configure Cross-Origin Resource Sharing (CORS) locally --- Api/Properties/launchSettings.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Api/Properties/launchSettings.json diff --git a/Api/Properties/launchSettings.json b/Api/Properties/launchSettings.json new file mode 100644 index 0000000..4bfc1b1 --- /dev/null +++ b/Api/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "Api": { + "commandName": "Project", + "commandLineArgs": "start --cors *" + } + } +} \ No newline at end of file