36 lines
828 B
JavaScript
36 lines
828 B
JavaScript
module.exports = {
|
|
configureWebpack: config => {
|
|
const configNew = {
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.json5$/i,
|
|
loader: 'json5-loader',
|
|
options: {
|
|
esModule: false
|
|
},
|
|
type: 'javascript/auto'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
return configNew
|
|
},
|
|
pluginOptions: {
|
|
electronBuilder: {
|
|
nodeIntegration: true,
|
|
// Provide an array of files that, when changed, will recompile the main process and restart Electron
|
|
// Your main process file will be added by default
|
|
mainProcessWatch: ['src/bridge', 'src/*.js', 'node_modules/dev-sidecar/src'],
|
|
builderOptions: {
|
|
extraResources: [
|
|
{
|
|
from: 'extra',
|
|
to: 'extra'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|