f663867a25
Register service worker, install prompt UI, iOS meta tags, and document install steps in DEPLOY.md. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
270 B
TypeScript
13 lines
270 B
TypeScript
import DefaultTheme from 'vitepress/theme'
|
|
import { h } from 'vue'
|
|
import InstallApp from './InstallApp.vue'
|
|
|
|
export default {
|
|
extends: DefaultTheme,
|
|
Layout: () => {
|
|
return h(DefaultTheme.Layout, null, {
|
|
'layout-bottom': () => h(InstallApp),
|
|
})
|
|
},
|
|
}
|