-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.entryPoints.js
50 lines (50 loc) · 1.35 KB
/
webpack.entryPoints.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module.exports = {
nonTwitchEntryPoints: {
Index: {
path: './src/Index.tsx',
outputHtml: 'index.html',
template: 'template-non-twitch.html',
build: true,
},
Display: {
path: './src/Display.tsx',
outputHtml: 'display.html',
template: './template.html',
build: true,
},
},
twitchEntryPoints: {
Config: {
path: './src/Config.tsx',
outputHtml: 'config.html',
template: './template.html',
build: true
},
Panel: {
path: "./src/Panel.tsx",
outputHtml: "panel.html",
template: './template.html',
build: true
},
// VideoComponent: {
// path: "./src/VideoComponent.js",
// outputHtml: "video_component.html",
// build: true
// },
// VideoOverlay: {
// path: "./src/VideoOverlay.js",
// outputHtml: "video_overlay.html",
// build: true
// },
// LiveConfig: {
// path: "./src/LiveConfig.js",
// outputHtml: "live_config.html",
// build: true
// },
// Mobile: {
// path: "./src/Mobile.js",
// outputHtml: "mobile.html",
// build: true
// }
}
}