when i am testing QUIC i am getting handshake error as opening handshake failed,mywebsite is using cloudflare cdn which support http3 and QUIC too enabled through cloudflare dashboard, please assist
let url = 'https://groundsbooker.com';
//let url = 'https://webrtc.internaut.com:6161/echo';
let transport = new WebTransport(url);
try{
transport.ready.then(()=>{
console.log(`connected to ${url}`);
});
transport.closed.then(()=>{
console.log(`the HTTP/3 connection to ${url} closed gracefully`)
})
}catch(error){
console.log(`connection to ${url} failed to connect with error: ${error}`);
}