This document will contain a list of known issues, and how to solve them.
The following error can happen on machines with low memory settings for MySQL.
× SEED ERROR ER_NET_PACKET_TOO_LARGE: Got a packet bigger than 'max_allowed_packet' bytes
To fix this issue, connect as a root user to MySQL and run this query:
set global net_buffer_length=1000000;
set global max_allowed_packet=1000000000;You may see this error when you try running npm run lint. If you see this error, it is because you are using an old version of Node.
You can check which version of Node you are using by running the following:
node -vThe supported Node version of this API is v12.12.0 or higher. If you see anything below this output from the command above, you will need to upgrade node ( or use NVM or NVM for Windows if you need to use multiple version of node on your machine ).