You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/development.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,17 @@ Starting the app
35
35
make dev
36
36
```
37
37
38
+
**🚨 Note:**
39
+
In some cases you'll see an error in the apps console that is similar to this:
40
+
```console
41
+
[...]/spellchecker/build/Release/spellchecker.node' was compiled against a different Node.js version using NODE_MODULE_VERSION 48. This version of Node.js requires NODE_MODULE_VERSION 54. [...]
42
+
```
43
+
In this case, you need to rebuild the native dependencies by running:
44
+
```bash
45
+
make rebuild-deps
46
+
```
47
+
After successfully running the command, you can start the app with `make dev`.
0 commit comments