File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ require('electron-debug')({ showDevTools: true })
2020
2121// Install `vue-devtools`
2222require ( 'electron' ) . app . on ( 'ready' , ( ) => {
23- let installExtension = require ( 'electron-devtools-installer' )
23+ const installExtension = require ( 'electron-devtools-installer' )
2424 installExtension . default ( installExtension . VUEJS_DEVTOOLS )
25- . then ( ( ) => { } )
25+ . then ( ( ) => ( { } ) )
2626 . catch ( err => {
2727 console . log ( 'Unable to install `vue-devtools`: \n' , err )
2828 } )
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ const winURL = process.env.NODE_ENV === 'development'
77 ? `http://localhost:${ require ( '../../../config' ) . port } `
88 : `file://${ __dirname } /index.html`
99
10- function createWindow ( ) {
10+ function createWindow ( ) {
1111 /**
1212 * Initial window options
1313 */
You can’t perform that action at this time.
0 commit comments