Closed
Description
During booting of the app we get an error n.paths is not iterable
, which points to this function below
// Determine the project root
// https://stackoverflow.com/a/18721515
function getPkgJsonDir() {
console.info("module", module)
for (const modPath of module.paths) {
module is {children: [], exports: [Setter] }
and seems to be missing the paths key
Activity