Add PWA info

This commit is contained in:
FloatingGhost 2022-11-28 22:44:20 +00:00
parent db60640c5b
commit bbf2e3f445
2 changed files with 13 additions and 9 deletions

View File

@ -313,7 +313,7 @@ config :pleroma, :frontend_configurations,
loginMethod: "password",
logo: "/static/logo.svg",
logoMargin: ".1em",
logoMask: true,
logoMask: false,
noAttachmentLinks: false,
nsfwCensorImage: "",
postContentType: "text/plain",
@ -346,12 +346,6 @@ config :pleroma, :assets,
default_mascot: :pleroma_fox_tan
config :pleroma, :manifest,
icons: [
%{
src: "/static/logo.svg",
type: "image/svg+xml"
}
],
theme_color: "#282c37",
background_color: "#191b22"

View File

@ -11,7 +11,17 @@ defmodule Pleroma.Web.ManifestView do
%{
name: Config.get([:instance, :name]),
description: Config.get([:instance, :description]),
icons: Config.get([:manifest, :icons]),
icons: [
%{
src: "/static/logo.svg",
type: "image/svg+xml"
},
%{
src: "/static/logo-512.png",
sizes: "512x512",
type: "image/png"
}
],
theme_color: Config.get([:manifest, :theme_color]),
background_color: Config.get([:manifest, :background_color]),
display: "standalone",
@ -21,7 +31,7 @@ defmodule Pleroma.Web.ManifestView do
"social"
],
serviceworker: %{
src: "/sw.js"
src: "/sw-pleroma.js"
}
}
end