12 lines
293 B
JavaScript
12 lines
293 B
JavaScript
module.exports = {
|
|
pluginOptions: {
|
|
electronBuilder: {
|
|
nodeIntegration: false,
|
|
contextIsolation: true,
|
|
preload: 'src/preload.js',
|
|
// If you want to use ESLint for your preload script,
|
|
// set lintPreloadFiles to true
|
|
lintPreloadFiles: false
|
|
}
|
|
}
|
|
} |