To improve SSR performance, on Node we should create axios instance by default with options:
httpAgent: new http.Agent({ keepAlive: true }),
httpsAgent: new https.Agent({ keepAlive: true }),
It may be optionally disabled with a new env var.
use https://undici.nodejs.org/#/ ? 🤔
To improve SSR performance, on Node we should create axios instance by default with options:
It may be optionally disabled with a new env var.