I have @fails-components/webtransport bundled to a single script, minus the webtransport.node file.
It is my understanding that Vercel supports executing .node files. I’m trying to figure out how to run HTTP3Server in a Vercel, for a WebTransport server. I also need to figure out how to deal with the certificate that I generated locally.
Currently HTTP3Server looks like this.
```
var server = new Http3Server({
port: 8080,
host: “0.0.0.0”,
secret: cert_default[0].secret,
cert: cert_default[0].pem,
privKey: cert_default[0].privateKey
});
```