@cd said in CALL_AND_RETRY_LAST:
Hope this is helpful for others.
Very much so, I have already lost a workday before my deadline while searching for a solution. Thank you!
@cd said in CALL_AND_RETRY_LAST:
Hope this is helpful for others.
Very much so, I have already lost a workday before my deadline while searching for a solution. Thank you!
Created this issue: https://github.com/quasarframework/quasar/issues/8340
this github repo to reproduce: https://github.com/sluedecke/quasar-pwa-test
Unfortunately this does not work for me. I would love to use workbox stuff like:
custom-service-worker.js:
/*
* This file (which will be your service worker)
* is picked up by the build system ONLY if
* quasar.conf > pwa > workboxPluginMode is set to "InjectManifest"
*/
// Use with precache injection
import { precacheAndRoute } from 'workbox-precaching';
precacheAndRoute(self.__WB_MANIFEST);
But quasar build --mode pwa
results in the same errors as seen in the OP. Trying to exclude src-pwa leads to:
App · ⚠️ 8 errors encountered:
./src-pwa/custom-service-worker.js
Module Error (from ./node_modules/eslint-loader/dist/cjs.js):
/home/saschal/Projekte/workspace/playground-js/pwa-test/src-pwa/custom-service-worker.js
0:0 error Parsing error: "parserOptions.project" has been set for @typescript-eslint/parser.
The file does not match your project config: src-pwa/custom-service-worker.js.
The file must be included in at least one of the projects provided
...