Just like in V2 i can easily use socket.io in my background.js
let socket = io.connect(url);
But now i've to migrate V2 to v3 and I want to use socket but know i'm getting this error "Error handling response: ReferenceError: io is not defined"
Is there any way to use socket io in my service worker (background.js)? Thanks
Another Question is ---> is socket io versions need to be same on both sides (client and server)?