Skip to content

Commit

Permalink
Fix Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan700 committed Nov 30, 2023
1 parent 80bfb1a commit 1607b02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/with-electron-typescript/electron-src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ app.on('window-all-closed', app.quit)
ipcMain.on('message', (event: IpcMainEvent, message: any) => {
console.log(message)
setTimeout(() => event.sender.send('message', 'hi from electron'), 500)
})
})
4 changes: 2 additions & 2 deletions examples/with-electron-typescript/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @type {import('next').NextConfig}
*/
const nextConfig = {
output: "export"
output: 'export',
}

module.exports = nextConfig
module.exports = nextConfig

0 comments on commit 1607b02

Please sign in to comment.