3.2.5 causes webpack error in dependent project
Closed this issue · 0 comments
JaydenLiang commented
the exports in the package.json will cause webpack error. see the following code block:
"exports": { ".": "./dist/index.js", "./azure/": "./dist/azure/", "./aws/": "./dist/aws/" },
The resolution is removing the trailing / on both key and value of "./azure/": "./dist/azure/",
and "./aws/": "./dist/aws/"