fix: update supported languages and improve PDF editor functionality with multi file support

This commit is contained in:
alam00000
2026-01-31 15:24:08 +05:30
parent e4a477567b
commit 5c1b00e9d1
5 changed files with 232 additions and 129 deletions

View File

@@ -100,7 +100,7 @@ self.addEventListener('fetch', (event) => {
isLocal &&
(url.pathname.endsWith('.html') ||
url.pathname === '/' ||
/^\/(en|fr|es|de|zh|zh-TW|vi|tr|id|it|pt|nl)(\/|$)/.test(url.pathname))
/^\/(en|fr|es|de|zh|zh-TW|vi|tr|id|it|pt|nl|be)(\/|$)/.test(url.pathname))
) {
event.respondWith(networkFirstStrategy(event.request));
}