0👍
For me the actual cause of the error was further down in the output. I was able to workout that buble was unable to transform a section of my code (a for loop). I rewrote it and the error went away.
Example of what I changed from
for (const [key, value] of Object.entries(obj)) {
console.log(key, value);
}
and to
Object.entries(obj).forEach(
([key, value]) => console.log(key, value)
);
- [Vuejs]-[npm]npm install will get stuck when it installs to the 53455th file
- [Vuejs]-Insert and Create data from data array with existing data
Source:stackexchange.com