8 lines
105 B
JavaScript
8 lines
105 B
JavaScript
import https from 'https';
|
|
|
|
const agent = new https.Agent({
|
|
keepAlive: true
|
|
});
|
|
|
|
export default agent;
|