Back to articles
FAT 32- node modules
How-To

FAT 32- node modules

via Dev.to Tutorialpabli44

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!!

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
1 views

Related Articles