Ai
2 Star 2 Fork 0

imcoder/chatgpt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sw.js 723 Bytes
一键复制 编辑 原始数据 按行查看 历史
imcoder 提交于 2023-05-22 10:15 +08:00 . 'init'
const CACHE_NAME = 'my-pwa-app-cache-v1';
const urlsToCache = [
'./',
'./index.html',
'./app.js',
'./main.css',
'./prompts.json'
];
self.addEventListener('install', function (event) {
event.waitUntil(
caches.open(CACHE_NAME)
.then(function (cache) {
console.log('Opened cache');
return cache.addAll(urlsToCache);
})
);
});
self.addEventListener('fetch', function (event) {
event.respondWith(
caches.match(event.request)
.then(function (response) {
if (response) {
return response;
}
return fetch(event.request);
})
);
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/imdreamer/chatgpt.git
git@gitee.com:imdreamer/chatgpt.git
imdreamer
chatgpt
chatgpt
master

搜索帮助