@brillout/docpress 0.16.7-commit-fc2ed19 → 0.16.8
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/package.json
CHANGED
|
@@ -99,6 +99,7 @@ function getOpenGraphTags(url: string, documentTitle: string, config: Config) {
|
|
|
99
99
|
// Resources:
|
|
100
100
|
// - https://www.google.com/s2/favicons?domain=vike.dev
|
|
101
101
|
// - https://stackoverflow.com/questions/59568586/favicon-don%c2%b4t-show-up-in-google-search-result/59577456#59577456
|
|
102
|
+
// - https://stackoverflow.com/questions/76123025/attach-google-search-specific-favicon-to-html
|
|
102
103
|
// - https://developers.google.com/search/docs/appearance/favicon-in-search
|
|
103
104
|
//
|
|
104
105
|
// Examples:
|
|
@@ -108,8 +109,10 @@ function getOpenGraphTags(url: string, documentTitle: string, config: Config) {
|
|
|
108
109
|
// https://rubyonrails.org
|
|
109
110
|
// - Favicon shown in browser is different than favicon shown in Google:
|
|
110
111
|
// https://evilmartians.com
|
|
111
|
-
// Shown in Google: <link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
112
|
+
// Shown in Google: <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> or <link rel="manifest" href="/manifest.webmanifest" />
|
|
112
113
|
// Shown in Browser: <link rel="icon" href="/favicon.svg" type="image/svg+xml" />
|
|
114
|
+
// https://gemini.google.com/share/8bcf76a26783
|
|
115
|
+
// https://chatgpt.com/share/696930b6-4414-800d-9c55-598ac7fa1ccb
|
|
113
116
|
function getFaviconTags(config: Config) {
|
|
114
117
|
const { faviconBrowser, faviconGoogle } = getFavicons(config)
|
|
115
118
|
assert(faviconBrowser)
|