Miroslav K
Miroslav K
If you will look little bit lower, you will see a line that creates and then sends a message to focused client https://github.com/firebase/firebase-js-sdk/blob/18fb16b74ed0e6b4e3a2b379a11fb07d6ab654e0/packages/messaging/src/controllers/sw-controller.ts#L228 So you can listen for this message...
I think this error means, that you're trying to set non-function as a handler to the event, for example `@event="blablabla"`, when `blablabla` method isn't defined in the instance, or it's...
Any progress here? Looking forward for this to be merged
Here is working workaround in `nuxt.config.ts` ```ts import { defineNuxtModule } from '@nuxt/kit'; ... modules: [ '@kevinmarrec/nuxt-pwa', // Add this after pwa module defineNuxtModule({ setup(_, nuxt) { nuxt.hook('prepare:types', ({ tsConfig...
> Cannot find name 'defineNuxtModule'. ```js import { defineNuxtModule } from '@nuxt/kit'; ```
Is this going to be merged?
Btw there is another type of internal links, for example `?test=value` or `#test=value` which will add query or hash to the current url
Not sure if I should open a new issue. I have similar problem, but `End meeting for all` doesn't work for me when using tenant url, no special characters in...
@damencho I'm using it in Kubernetes with Jitsi Helm Chart, but here is NGINX config, built from Ingress NGNIX Config ```lua server { server_name mydomain.com ; listen 80 ; listen...
Sorry, just realized, that I should look into docker image with `jitsi-meet`. So the nginx config there looks correct ```lua location = /config.js { alias /config/config.js; } location = /interface_config.js...