If you have a drive formatted in FAT32, be careful when creating projects on it. This format tends to cause issues when loading project dependencies. It is recommended to use an additional flag when running processes in your project; for example:
Command:
npm run dev
Recommended Command:
npm run dev --no-bin-links
By using the command this way, you avoid the aforementioned problem. However, the best practice would be to host your projects on a drive with a format other than FAT32, such as exFAT or NTFS.
You know, enjoy learning!!
Top comments (0)