[Vuejs]-Vue Cli Serve Fatal JavaScript invalid size error: node_api_throw_syntax_error

0👍

i found the solution!

the issue was, that within .prettierrc the property "endOfLine" was set to "auto".

This resulted in a \r\n instead of a \r at the end of each line, which itself results to this memory leak within the vue compiler.

Leave a comment