change manifest url

This commit is contained in:
Simon Vieille 2023-12-06 17:54:32 +01:00
parent ff5a66ad07
commit e3cbf3eda2
Signed by: deblan
GPG key ID: 579388D585F70417
3 changed files with 8 additions and 8 deletions

View file

@ -59,7 +59,7 @@ func main() {
actions = createActions()
e.GET("/static/*", echo.WrapHandler(http.StripPrefix("/static/", assetHandler)))
e.GET("/manifest.json", manifestController)
e.GET("/manifest.webmanifest", manifestController)
e.GET("/", homeController)
e.GET("/ws", wsController)

File diff suppressed because one or more lines are too long

View file

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="/static/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="/static/css/main.css" type="text/css">
<link rel="manifest" href="/manifest.json">
<link rel="manifest" href="/manifest.webmanifest">
<link rel="icon" type="image/png" href="/static/img/icon.png">
<title>Remote i3-wm</title>
</head>