diff --git a/pages/getting-started/download-repo.mdx b/pages/getting-started/download-repo.mdx index 723a477..3ab5921 100644 --- a/pages/getting-started/download-repo.mdx +++ b/pages/getting-started/download-repo.mdx @@ -42,10 +42,21 @@ npm run embeddable:build ``` +On Windows, you may encounter an like `Cannot find module './swc.win32-x64-msvc.node'` at this point. + +Make sure you have Microsoft Visual C++ Redistributable installed. https://docs.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist + +Following this, delete `node_modules` and `package-lock.json`. Finally, install your `node_modules` again: + +```bash +npm i +``` + + ## Next steps You're now ready to set up your workspace and push your first code bundle. - \ No newline at end of file +