mod_conversejs/README.markdown
changeset 5875 1c8197075d04
parent 4917 47d03db2fca8
--- a/mod_conversejs/README.markdown	Thu Mar 14 09:48:30 2024 +0000
+++ b/mod_conversejs/README.markdown	Sun Mar 17 15:05:29 2024 +0100
@@ -158,6 +158,34 @@
 
 The example above uses the `[[` and `]]` syntax simply because it will not conflict with any embedded quotes.
 
+Custimizing the generated PWA options
+-------------------------------------
+
+``` {.lua}
+conversejs_name = "Service name" -- Also used as the web page title
+conversejs_short_name = "Shorter name"
+conversejs_description = "Description of the service"
+conversejs_manifest_icons = {
+	{
+	    src = "https://example.com/logo/512.png",
+    	sizes = "512x512",
+	},
+	{
+    	src = "https://example.com/logo/192.png",
+	    sizes = "192x192",
+	},
+	{
+    	src = "https://example.com/logo/192.svg",
+	    sizes = "192x192",
+	},
+	{
+	    src = "https://example.com/logo/512.svg",
+    	sizes = "512x512",
+	},
+}
+conversejs_pwa_color = "#397491"
+```
+
 Compatibility
 =============