1 Star 0 Fork 1

ike_yu/mmf-blog-vite-vue3-ssr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.pwa.ts 2.49 KB
一键复制 编辑 原始数据 按行查看 历史
import { VitePWA } from 'vite-plugin-pwa'
export default () => (VitePWA({
// mode: 'development',
base: '/',
registerType: 'autoUpdate',
workbox: {
cacheId: 'mmf-blog-vite-vue3-ssr',
globPatterns: ['**/*.{js,css}'],
navigateFallback: null,
runtimeCaching: [
{
urlPattern: /api\/.*/i,
handler: 'CacheFirst',
method: 'GET',
options: {
// networkTimeoutSeconds: 1,
cacheName: 'api-cache',
cacheableResponse: {
statuses: [0, 200],
},
},
},
{
urlPattern: /^https:\/\/cdn\.jsdelivr\.net\/.*/i,
handler: 'CacheFirst',
method: 'GET',
options: {
// networkTimeoutSeconds: 1,
cacheName: 'cdn-cache',
cacheableResponse: {
statuses: [0, 200],
},
},
},
],
},
manifest: {
name: 'M.M.F小屋',
short_name: 'M.M.F小屋',
theme_color: '#54d9e0',
background_color: '#ffffff',
icons: [
{
src: '/static/img/icons/android-chrome-48x48.png',
sizes: '48x48',
type: 'image/png',
},
{
src: '/static/img/icons/android-chrome-72x72.png',
sizes: '72x72',
type: 'image/png',
},
{
src: '/static/img/icons/android-chrome-96x96.png',
sizes: '96x96',
type: 'image/png',
},
{
src: '/static/img/icons/msapplication-icon-144x144.png',
sizes: '144x144',
type: 'image/png',
},
{
src: '/static/img/icons/android-chrome-168x168.png',
sizes: '168x168',
type: 'image/png',
},
{
src: '/static/img/icons/android-chrome-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/static/img/icons/android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png',
},
],
start_url: '/',
display: 'standalone',
lang: 'zh-CN',
},
}))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ike_yu/mmf-blog-vite-vue3-ssr.git
[email protected]:ike_yu/mmf-blog-vite-vue3-ssr.git
ike_yu
mmf-blog-vite-vue3-ssr
mmf-blog-vite-vue3-ssr
master

搜索帮助