Skip to content

Commit c89e773

Browse files
committed
Fix
1 parent b81fd2c commit c89e773

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jest.setup.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import '@testing-library/jest-dom';
22

3-
import { images } from './next.config';
3+
import * as NextJsConfig from './next.config';
44

55
process.env = {
66
...process.env,
77
__NEXT_I18N_SUPPORT: 'true',
8-
__NEXT_IMAGE_OPTS: (images as unknown) as string,
8+
__NEXT_IMAGE_OPTS: (NextJsConfig.images as unknown) as string,
99
};

0 commit comments

Comments
 (0)