mirror of
https://github.com/fmhy/edit.git
synced 2025-08-01 00:32:30 +10:00
chore: bump deps, fix typescript peer deps issues
This commit is contained in:
parent
57310370e5
commit
cd0167cc25
6 changed files with 1956 additions and 1207 deletions
|
@ -46,14 +46,24 @@ export default defineConfig({
|
|||
['link', { rel: 'icon', href: '/test.png', type: 'image/svg+xml' }],
|
||||
['link', { rel: 'alternate icon', href: '/test.png' }],
|
||||
['link', { rel: 'mask-icon', href: '/test.png', color: '#7bc5e4' }],
|
||||
["meta", { name: "keywords", content: meta.keywords.join(" ") }],
|
||||
['meta', { name: 'keywords', content: meta.keywords.join(' ') }],
|
||||
['link', { rel: 'apple-touch-icon', href: '/test.png', sizes: '192x192' }],
|
||||
// Bing site verification
|
||||
["meta", {
|
||||
name: "msvalidate.01", content: "55ae5a0600A8C7827B59CFD506D76DC2"
|
||||
}],
|
||||
[
|
||||
'meta',
|
||||
{
|
||||
name: 'msvalidate.01',
|
||||
content: '55ae5a0600A8C7827B59CFD506D76DC2'
|
||||
}
|
||||
],
|
||||
// Google site verification
|
||||
["meta", { name: "google-site-verification", content: "XCq-ZTw6VJPQ7gVNEOl8u0JRqfadK7WcsJ0H598Wv9E" }]
|
||||
[
|
||||
'meta',
|
||||
{
|
||||
name: 'google-site-verification',
|
||||
content: 'XCq-ZTw6VJPQ7gVNEOl8u0JRqfadK7WcsJ0H598Wv9E'
|
||||
}
|
||||
]
|
||||
],
|
||||
transformHead: async (context) => generateMeta(context, meta.hostname),
|
||||
buildEnd: async (context) => {
|
||||
|
@ -130,7 +140,7 @@ export default defineConfig({
|
|||
search,
|
||||
footer: {
|
||||
message: `${feedback} (rev: ${commitRef})`,
|
||||
copyright: `© ${new Date().getFullYear()}, <a href="https://github.com/nbats">nbats</a>, <a href="https://github.com/taskylizard">taskylizard</a> and contributors. <a href="https://i.ibb.co/VJQmQ9t/image.png">Estd 2018.</a>`
|
||||
copyright: `© ${new Date().getFullYear()}, <a href="https://github.com/nbats">nbats</a>, <a href="https://tasky.nuxt.dev" class="text-[#ff91af]">taskylizard</a> and contributors. <a href="https://i.ibb.co/VJQmQ9t/image.png">Estd 2018.</a>`
|
||||
},
|
||||
editLink: {
|
||||
pattern: 'https://github.com/fmhy/FMHYEdit/edit/main/docs/:path',
|
||||
|
|
|
@ -147,6 +147,10 @@ export const nav: DefaultTheme.NavItem[] = [
|
|||
link: 'https://github.com/fmhy/bookmarks'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '💐 tasky',
|
||||
link: 'https://tasky.nuxt.dev'
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
@ -3,8 +3,11 @@ const { frontmatter } = useData()
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<a v-if="frontmatter.hero.announcement" :href="frontmatter.hero.announcement.link"
|
||||
class="mb-3 inline-flex items-center rounded-lg bg-[var(--vp-c-default-soft)] px-4 py-1 text-sm font-semibold">
|
||||
<a
|
||||
v-if="frontmatter.hero.announcement"
|
||||
:href="frontmatter.hero.announcement.link"
|
||||
class="mb-3 inline-flex items-center rounded-lg bg-[var(--vp-c-default-soft)] px-4 py-1 text-sm font-semibold"
|
||||
>
|
||||
{{ frontmatter.hero.announcement.title }}
|
||||
</a>
|
||||
</template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue