mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
module.exports = function (extra) {
|
|
const {crashReporter} = require('electron')
|
|
crashReporter.start({
|
|
productName: 'Atom',
|
|
companyName: 'GitHub',
|
|
submitURL: 'https://crashreporter.atom.io',
|
|
uploadToServer: false,
|
|
extra: extra
|
|
})
|
|
}
|