mirror of
https://github.com/atom/atom.git
synced 2026-02-11 15:14:59 -05:00
11 lines
253 B
JavaScript
11 lines
253 B
JavaScript
module.exports = function (extra) {
|
|
const {crashReporter} = require('electron')
|
|
crashReporter.start({
|
|
productName: 'Atom',
|
|
companyName: 'GitHub',
|
|
submitURL: 'https://crashreporter.atom.io',
|
|
autoSubmit: false,
|
|
extra: extra
|
|
})
|
|
}
|