Skip to content

Commit

Permalink
electron builder now reads config.json for project name
Browse files Browse the repository at this point in the history
  • Loading branch information
technophilic committed Oct 2, 2020
1 parent a82be34 commit c65d819
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion electron-builder.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
const {projectName} = require('./config.json');
module.exports = {
appId: 'io.agora.saas',
appId: `com.${projectName.toLowerCase()}`,
productName: projectName,
directories: {
output: './out',
app: './.electron',
Expand Down

0 comments on commit c65d819

Please sign in to comment.