diff --git a/dist/web/Dockerfile b/dist/web/Dockerfile index 4606f20a0..1ee944edb 100644 --- a/dist/web/Dockerfile +++ b/dist/web/Dockerfile @@ -82,6 +82,8 @@ COPY --from=build [ \ "/build/wasm-config.js", \ "/build/enable-threads.js", \ "/build/favicon.ico", \ + "/build/icon.png", \ + "/build/manifest.json", \ \ # Destination \ "./" \ diff --git a/dist/web/source/icon.png b/dist/web/source/icon.png new file mode 100644 index 000000000..b8fa513ca Binary files /dev/null and b/dist/web/source/icon.png differ diff --git a/dist/web/source/index.html b/dist/web/source/index.html index 1e1f95fa6..ffedcd6e4 100644 --- a/dist/web/source/index.html +++ b/dist/web/source/index.html @@ -1,6 +1,7 @@ + diff --git a/dist/web/source/manifest.json b/dist/web/source/manifest.json new file mode 100644 index 000000000..d5e5165ac --- /dev/null +++ b/dist/web/source/manifest.json @@ -0,0 +1,12 @@ +{ + "name": "ImHex", + "icons": [ + { + "src": "icon.png", + "type": "image/png", + "sizes": "640x640" + } + ], + "start_url": ".", + "display": "standalone" +}