79328122

Date: 2025-01-04 02:26:43
Score: 1.5
Natty:
Report link

Adding 'local.settings.json' file configured with the following CORS setting to my Azure Function API project resolved the issue for me:

{
  "Values": {
  },
  "Host": {
    "CORS": "*"
  }
}

The following SO answer helped me (https://stackoverflow.com/a/60109518/443971).

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: seanrco