-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.config.renderer.ts
60 lines (52 loc) · 1.14 KB
/
webpack.config.renderer.ts
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import { Configuration } from 'webpack';
import {
applyBrowserEntries,
applyPageEntries,
BrowserRenderer as BrowserRendererConfig,
PageRenderer as PageRendererConfig
} from './webpack.config';
const BrowserRenderer: Configuration = {
...BrowserRendererConfig,
mode: 'production',
stats: 'errors-only',
performance: { hints: false },
optimization: { minimize: true },
devtool: undefined
};
const PageRenderer: Configuration = {
...PageRendererConfig,
mode: 'production',
stats: 'errors-only',
performance: { hints: false },
optimization: { minimize: true },
devtool: undefined
};
applyBrowserEntries(
BrowserRenderer,
[
'app',
'process-manager',
'menu',
'profile',
'information',
'search',
'find',
'bookmarks',
'history',
'downloads',
'extensions'
]
);
applyPageEntries(
PageRenderer,
[
'home',
'bookmarks',
'history',
'downloads',
'applications',
'extensions',
'settings'
]
);
export default [BrowserRenderer, PageRenderer];