fix: add the webmanifest
All checks were successful
actionlint check / actionlint check (pull_request) Successful in 13s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 3s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 6s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 10s
GitLeaks check / GitLeaks check (pull_request) Successful in 15s
markdownlint check / markdownlint check (pull_request) Successful in 26s
htmlhint check / htmlhint check (pull_request) Successful in 34s
hadolint check / hadolint check (pull_request) Successful in 43s
checkov check / checkov check (pull_request) Successful in 1m17s
Prettier check / Prettier check (pull_request) Successful in 32s
Stylelint check / Stylelint check (pull_request) Successful in 35s
yamllint check / yamllint check (pull_request) Successful in 31s
ShellCheck check / ShellCheck check (pull_request) Successful in 29s
Rust check / Rust check (pull_request) Successful in 22m49s

This commit is contained in:
2025-08-07 12:25:31 +02:00
parent 94059f14bb
commit 9302a69553
2 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,7 @@
"theme_color": "#27272a",
"icons": [
{
"src": "/images/icon.png",
"src": "/assets/images/icon.png",
"sizes": "any",
"type": "image/png"
}

View File

@ -13,6 +13,7 @@ const TAILWIND_CSS: Asset = asset!("/assets/styles/tailwind_output.css");
const FONTS_CSS: Asset = asset!("/assets/styles/fonts.css");
const INPUT_NUMBER_ARROWS_CSS: Asset = asset!("/assets/styles/input_number_arrows.css");
const INPUT_RANGE_CSS: Asset = asset!("/assets/styles/input_range.css");
const MANIFEST: Asset = asset!("/assets/manifest.json");
#[component]
pub(crate) fn App() -> Element {
@ -39,6 +40,7 @@ pub(crate) fn App() -> Element {
document::Stylesheet { href: FONTS_CSS }
document::Stylesheet { href: INPUT_NUMBER_ARROWS_CSS }
document::Stylesheet { href: INPUT_RANGE_CSS }
document::Link { rel: "manifest", href: MANIFEST }
document::Script { src: "https://kit.fontawesome.com/3c1b409f8f.js" }
div {