The package.json declares:
"module": "dist/index.mjs"
However, dist/index.mjs is not present in the published package.
resolve: {
alias: {
"react-loqate": "./node_modules/react-loqate/dist/index.js",
},
}
Expected
Generate and publish dist/index.mjs or update the module field to point to an existing file.
Thanks!