Developing with WSL
Developing with Windows Subsystem for Linux, on Windows
# If node_modules exists already that was installed in WSL:
rm -r node_modules
# then:
npm install --platform=win32
# or:
npm_config_platform=win32 npm install
npm run make -- --platform=win32Last updated
Was this helpful?