generated from maximegris/angular-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.webpack.js
28 lines (27 loc) · 862 Bytes
/
angular.webpack.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
* Custom angular webpack configuration
*/
module.exports = (config, options) => {
config.target = 'electron-renderer';
if (options.fileReplacements) {
for (let fileReplacement of options.fileReplacements) {
if (fileReplacement.replace !== 'src/environments/_environment.ts') {
continue;
}
let fileReplacementParts = fileReplacement['with'].split('.');
if (fileReplacementParts.length > 1 && ['web'].indexOf(fileReplacementParts[1]) >= 0) {
config.target = 'web';
}
break;
}
}
// config.externals = {
// "electron": "require('electron')",
// "child_process": "require('child_process')",
// "fs": "require('fs')",
// "url": "require('url')",
// "pixi.js-keyboard": require('pixi.js-keyboard'),
// "pixi.js-mouse": require('pixi.js-mouse')
// }
return config;
}