Merge pull request #31 from flechaig/master

Avoid HTTP 401 error on manifest.json due to CORS
This commit is contained in:
Soren L. Hansen 2022-04-01 01:04:38 -07:00 committed by GitHub
commit 736ad294e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<title>{{ .title }}</title> <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="favicon.ico">
<link rel="icon" href="icon.svg" type="image/svg+xml"> <link rel="icon" href="icon.svg" type="image/svg+xml">
<link rel="stylesheet" href="./css/index.css" /> <link rel="stylesheet" href="./css/index.css" />