diff --git a/src/.vuepress/config.ts b/src/.vuepress/config.ts index dc71b7d..4664cd6 100644 --- a/src/.vuepress/config.ts +++ b/src/.vuepress/config.ts @@ -10,12 +10,9 @@ export default defineUserConfig({ head: [ [ - 'link', { rel: 'icon', href: '/favicon.ico' } + 'link', { rel: 'icon', href: './favicon.ico' } ] ], theme, - - // Enable it with pwa - // shouldPrefetch: false, }); diff --git a/src/.vuepress/theme.ts b/src/.vuepress/theme.ts index 9b0b7d1..38bbfaf 100644 --- a/src/.vuepress/theme.ts +++ b/src/.vuepress/theme.ts @@ -90,62 +90,5 @@ export default hopeTheme({ vPre: true, vuePlayground: false, }, - - // uncomment these if you want a pwa - // pwa: { - // favicon: "/favicon.ico", - // cacheHTML: true, - // cachePic: true, - // appendBase: true, - // apple: { - // icon: "/assets/icon/apple-icon-152.png", - // statusBarColor: "black", - // }, - // msTile: { - // image: "/assets/icon/ms-icon-144.png", - // color: "#ffffff", - // }, - // manifest: { - // icons: [ - // { - // src: "/assets/icon/chrome-mask-512.png", - // sizes: "512x512", - // purpose: "maskable", - // type: "image/png", - // }, - // { - // src: "/assets/icon/chrome-mask-192.png", - // sizes: "192x192", - // purpose: "maskable", - // type: "image/png", - // }, - // { - // src: "/assets/icon/chrome-512.png", - // sizes: "512x512", - // type: "image/png", - // }, - // { - // src: "/assets/icon/chrome-192.png", - // sizes: "192x192", - // type: "image/png", - // }, - // ], - // shortcuts: [ - // { - // name: "Demo", - // short_name: "Demo", - // url: "/demo/", - // icons: [ - // { - // src: "/assets/icon/guide-maskable.png", - // sizes: "192x192", - // purpose: "maskable", - // type: "image/png", - // }, - // ], - // }, - // ], - // }, - // }, }, });