修复网站图标路径错误

This commit is contained in:
狮子耗耗 2023-08-11 12:10:41 +08:00
parent 7e024ae47f
commit a47a6d43af
2 changed files with 1 additions and 61 deletions

View File

@ -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,
});

View File

@ -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",
// },
// ],
// },
// ],
// },
// },
},
});