Ваше соединение не является частным Angular через политику https CORS - PullRequest
0 голосов
/ 25 апреля 2020

Я пытаюсь прочитать файл из приложения git в Angular

https://raw.githubusercontent.com/anandjaisy/androidCodeTemplates/master/input/input.component.html

https://raw.githubusercontent.com/anandjaisy/androidCodeTemplates/master/input/input.component.ts

Продолжайте получать сообщение об ошибке не является частным, и когда я продолжаю, я получаю сообщение об ошибке CORS от GIT.

Access to XMLHttpRequest at 'https://raw.githubusercontent.com/anandjaisy/androidCodeTemplates/master/input/input.component.html' from origin 'https://localhost:4200' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: It does not have HTTP ok status.

Я установил сертификат и ключ из этого блога

https://brettmckenzie.net/2018/03/14/serving-your-angular-cli-app-locally-over-https/

"serve": {
          "builder": "@angular-devkit/build-angular:dev-server",
          "options": {
            "browserTarget": "project-falcon:build",
            "ssl": true,
            "sslKey": "./node_modules/browser-sync/certs/server.key",
            "sslCert": "./node_modules/browser-sync/certs/server.crt"
          }
        }

enter image description here

...