Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
fix(proxyagent): fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
code-forger committed Jan 23, 2024
1 parent 63b2d23 commit 548d111
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/server/utils/devCdnFactory.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import fs from 'fs';
import rimraf from 'rimraf';
import path from 'path';
import mkdirp from 'mkdirp';
import { ProxyAgent } from 'proxy-agent';
import ProxyAgent from 'proxy-agent';
import oneAppDevCdn from '../../../src/server/utils/devCdnFactory';
import {
removeExistingEntryIfConflicting,
Expand Down
2 changes: 1 addition & 1 deletion src/server/utils/devCdnFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import compress from '@fastify/compress';
import fastifyStatic from '@fastify/static';
import Fastify from 'fastify';
import ip from 'ip';
import { ProxyAgent } from 'proxy-agent';
import ProxyAgent from 'proxy-agent';
import fetch from 'node-fetch';
import logger from './logging/logger';

Expand Down

0 comments on commit 548d111

Please sign in to comment.