@pablozaiden/webapp 0.4.3 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/getting-started.md +0 -1
- package/docs/server.md +0 -2
- package/package.json +1 -1
package/docs/getting-started.md
CHANGED
|
@@ -52,7 +52,6 @@ Keep install metadata static and relative to `index.html` so Bun can bundle and
|
|
|
52
52
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
53
53
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
54
54
|
<meta name="apple-mobile-web-app-title" content="MyApp" />
|
|
55
|
-
<meta name="theme-color" content="#111827" />
|
|
56
55
|
```
|
|
57
56
|
|
|
58
57
|
Place `site.webmanifest`, icons, and apple-touch icons next to `index.html`, and reference manifest icons with relative paths such as `"./web-app-manifest-192x192.png"`. A single SVG favicon is enough for lightweight examples; production apps should include PNG manifest icons and an Apple touch icon like Clanky. For string, `Blob`, or `Response` HTML indexes, include equivalent tags in the HTML you pass to the server.
|
package/docs/server.md
CHANGED
|
@@ -108,7 +108,6 @@ When `index` is a Bun `HTMLBundle`, place `site.webmanifest`, favicons, and appl
|
|
|
108
108
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
109
109
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
110
110
|
<meta name="apple-mobile-web-app-title" content="MyApp" />
|
|
111
|
-
<meta name="theme-color" content="#111827" />
|
|
112
111
|
```
|
|
113
112
|
|
|
114
113
|
Use relative icon paths inside `site.webmanifest` as well:
|
|
@@ -121,7 +120,6 @@ Use relative icon paths inside `site.webmanifest` as well:
|
|
|
121
120
|
"scope": "./",
|
|
122
121
|
"display": "standalone",
|
|
123
122
|
"background_color": "#ffffff",
|
|
124
|
-
"theme_color": "#111827",
|
|
125
123
|
"icons": [
|
|
126
124
|
{ "src": "./web-app-manifest-192x192.png", "sizes": "192x192", "type": "image/png", "purpose": "any maskable" },
|
|
127
125
|
{ "src": "./web-app-manifest-512x512.png", "sizes": "512x512", "type": "image/png", "purpose": "any maskable" }
|