Skip to content

Commit

Permalink
Avoid HTTP 401 error on manifest.json due to CORS
Browse files Browse the repository at this point in the history
Because of CORS, the manifest.json request returns an HTTP 401 error.
Explaination: koajs/basic-auth#19
  • Loading branch information
flechaig committed Mar 25, 2022
1 parent dcb153c commit 817b5c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>{{ .title }}</title>
<link rel="manifest" href="manifest.json">
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
<link rel="icon" href="favicon.ico">
<link rel="icon" href="icon.svg" type="image/svg+xml">
<link rel="stylesheet" href="./css/index.css" />
Expand Down

0 comments on commit 817b5c8

Please sign in to comment.