Skip to content

Commit 993191b

Browse files
committed
added readme changes. uncommented deeplink
1 parent 726276c commit 993191b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,8 @@ Then open a new terminal instance, set the DISPLAY value again (re-enter above c
288288
```
289289
quasar dev -m electron
290290
```
291+
**NOTE** Electron-deeplink currently does not work on our WSL2 computers and output an error during installing the dependency which prevented the application to open in dev mode. Go to /src-electron/electron-main.js and comment out line 3/import line to bypass error. The developers did not find any impacts on application so far.
292+
291293
## Running the Docker Image
292294

293295
To run the built version, pull down the docker image from [Docker repo]

src-electron/electron-main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { app, BrowserWindow, nativeTheme, dialog, ipcMain } from "electron";
2-
// import { Deeplink } from "electron-deeplink";
2+
//import deeplink currently did not work in our WSL2 computers - commented out line 3 fixed our issue to be able to run in dev mode
3+
import { Deeplink } from "electron-deeplink";
34
import isDev from "electron-is-dev";
45
import path from "path";
56
import os from "os";

0 commit comments

Comments
 (0)