Skip to content

Commit 8ac4965

Browse files
committed
adds manifest
1 parent 32d3f6c commit 8ac4965

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

public/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@
1616
<link rel="stylesheet" href="{{ .Base }}/{{ index $css 0}}" />
1717
<script type="module" src="{{ .Base }}/{{ $js }}"></script>
1818
{{- end }}
19-
<meta name="description" content="Dozzle is a log viewer for Docker" />
19+
<meta name="description" content="A log viewer for containers" />
2020
<meta name="robots" content="noindex" />
2121
<link rel="apple-touch-icon" href="{{ .Base }}/apple-touch-icon.png" sizes="512x512" />
22+
<link rel="manifest" href="{{ .Base }}/manifest.webmanifest" />
2223
</head>
2324

2425
<body>

vite.config.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,15 @@ export default defineConfig(() => ({
8383
name: "Dozzle",
8484
display: "standalone",
8585
short_name: "Dozzle",
86-
description: "A simple and lightweight Vue.js application",
86+
description: "A log viewer for containers",
8787
theme_color: "#000",
88+
icons: [
89+
{
90+
src: "/apple-touch-icon.png",
91+
sizes: "512x512",
92+
type: "image/png",
93+
},
94+
],
8895
},
8996
}),
9097
],

0 commit comments

Comments
 (0)