16 lines
310 B
JavaScript
16 lines
310 B
JavaScript
module.exports = {
|
|
init
|
|
}
|
|
|
|
function init () {
|
|
const config = require('./config')
|
|
const { crashReporter } = require('electron')
|
|
|
|
crashReporter.start({
|
|
productName: config.APP_NAME,
|
|
submitURL: config.CRASH_REPORT_URL,
|
|
globalExtra: { _companyName: config.APP_NAME },
|
|
compress: true
|
|
})
|
|
}
|