We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48cf503 commit ed18da0Copy full SHA for ed18da0
src/backend/app/app.module.ts
@@ -23,10 +23,14 @@ import { AppService } from './app.service'
23
win.on('closed', () => {
24
win.destroy()
25
})
26
+ // const URL = isDev
27
+ //
28
+ // ? process.env.DS_RENDERER_URL
29
+ // : `file://${join(app.getAppPath(), 'dist/frontend/index.html')}`
30
const URL = isDev
31
32
? process.env.DS_RENDERER_URL
- : `file://${join(app.getAppPath(), 'dist/frontend/index.html')}`
33
+ : 'http://127.0.0.1:3007'
34
win.loadURL(URL)
35
36
return { win }
0 commit comments