Why is rollup using `import(‘u’+’rl’)` instead of just putting `import(‘url’)` in the generated JS output?
I have an application that uses rollup to convert an ESM codebase to CJS before compiling it as a pkg.exe file. The issue with this is that pkg
does not allow dynamic imports, which is fine by me as there is documentation for that. When I looked deeper into the issues, seems like it’s caused by this line in the generated CJS file.