Skip to content

Commit

Permalink
fix(examples): correct the path in with-electron (#8370)
Browse files Browse the repository at this point in the history
* fix(examples): correct path in with-electron

* Update index.js
  • Loading branch information
merceyz authored and timneutkens committed Aug 14, 2019
1 parent d3f25cc commit a7baeb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/with-electron/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ app.on('ready', async () => {
const url = isDev
? 'http://localhost:8000/start'
: format({
pathname: join(__dirname, '../renderer/start/index.html'),
pathname: join(__dirname, '../renderer/start.html'),
protocol: 'file:',
slashes: true
})
Expand Down

0 comments on commit a7baeb0

Please sign in to comment.