Files
payloadcms/test/loader/fileWithCJSImport.ts
2024-04-27 21:13:38 -04:00

7 lines
281 B
TypeScript

//@ts-expect-error
import Link from 'next/link' // Intentionally omit the .js extension. This needs to be a CJS .js file not included in the packages package.json main or exports fields
if (typeof Link.render !== 'function') {
throw new Error('Link.render is not a function')
}