From 177df4aed7b8354df0046343016e12688f5b54a4 Mon Sep 17 00:00:00 2001 From: Vjacheslav Trushkin Date: Tue, 3 Jan 2023 11:57:41 +0200 Subject: [PATCH] fix: glob for emojis cache for pwa (#729) --- config/pwa.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/pwa.ts b/config/pwa.ts index 1a0e5d15..f47a2846 100644 --- a/config/pwa.ts +++ b/config/pwa.ts @@ -43,7 +43,7 @@ export const pwa: VitePWANuxtOptions = { }, injectManifest: { globPatterns: ['**/*.{js,json,css,html,txt,svg,png,ico,webp,woff,woff2,ttf,eot,otf,wasm}'], - globIgnores: ['emojis/*'], + globIgnores: ['emojis/**'], }, devOptions: { enabled: process.env.VITE_DEV_PWA === 'true',