fix: remove duckduckgo from crawler list
This commit is contained in:
parent
d46ddbe2b4
commit
896681d5b9
|
@ -10,7 +10,9 @@ export default defineNuxtPlugin(async (nuxtApp) => {
|
||||||
if (!userAgent)
|
if (!userAgent)
|
||||||
return
|
return
|
||||||
|
|
||||||
const isOpenGraphCrawler = /twitterbot|discordbot|facebookexternalhit|googlebot|msnbot|baidu|ahrefsbot|duckduckgo/i.test(userAgent)
|
const isOpenGraphCrawler = /twitterbot|discordbot|facebookexternalhit|googlebot|msnbot|baidu|ahrefsbot/i.test(userAgent)
|
||||||
if (isOpenGraphCrawler)
|
if (isOpenGraphCrawler) {
|
||||||
|
// Redirect bots to the original instance to respect their social sharing settings
|
||||||
await sendRedirect(nuxtApp.ssrContext!.event, `https:/${route.path}`, 301)
|
await sendRedirect(nuxtApp.ssrContext!.event, `https:/${route.path}`, 301)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue