-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
259 lines (249 loc) · 5.68 KB
/
webpack.config.js
File metadata and controls
259 lines (249 loc) · 5.68 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
function pageTemplate(config) {
return `
<!DOCTYPE html>
<html lang="en" class="${config.class}">
<head>
<title>${config.title}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"/>
${config.head}
</head>
<body>
${config.body}
</body>
</html>
`;
}
module.exports = (env, argv) => {
const isDev = argv.mode == 'development';
let entry = {
bundle: ['./js/main.js', './css/main.pcss'],
};
const plugins = [new MiniCssExtractPlugin()];
const htmlFiles = [
{
template: pageTemplate,
title: 'branches',
filename: 'branches.html',
class: 'branches',
head: ``,
oldhead: `<link href="./assets/fonts/fonts.css" rel="stylesheet">`,
body: `
<script>
window.Branches();
</script>
`,
},
{
template: pageTemplate,
title: 'tree',
filename: 'tree.html',
class: 'tree',
head: ``,
oldhead: `<link href="./assets/fonts/fonts.css" rel="stylesheet">`,
body: `
<script>
window.Tree();
</script>
`,
},
{
template: pageTemplate,
title: 'demo2',
filename: 'demo2.html',
class: 'demo demo2',
head: ``,
oldhead: `<link href="./assets/fonts/fonts.css" rel="stylesheet">`,
body: `
<script>
window.Demo2();
</script>
`,
},
{
template: pageTemplate,
title: 'demo1',
filename: 'demo1.html',
class: 'demo demo1',
head: ``,
oldhead: `<link href="./assets/fonts/fonts.css" rel="stylesheet">`,
body: `
<script>
window.Demo1();
</script>
`,
},
{
template: pageTemplate,
title: 'particles cloud',
filename: 'particles-cloud.html',
class: 'particles cloud',
head: ``,
oldhead: `<link href="./assets/fonts/fonts.css" rel="stylesheet">`,
body: `
<script>
window.ParticlesCloud();
</script>
`,
},
{
template: pageTemplate,
title: 'particles instanced',
filename: 'particles-instanced.html',
class: 'particles instanced',
head: ``,
body: `
<script>
window.MainInstanced();
</script>
`,
},
{
template: pageTemplate,
title: 'particles points',
filename: 'particles.html',
class: 'particles points',
head: ``,
body: `
<script>
window.MainPoints();
</script>
`,
},
{
template: pageTemplate,
title: 'fresnel',
filename: 'fresnel.html',
class: 'fresnel',
head: ``,
body: `
<script>
window.Cloud();
</script>
`,
},
{
template: pageTemplate,
title: 'datatest',
filename: 'datatest.html',
class: 'datatest',
head: ``,
body: `
<script>
window.DataTest();
</script>
`,
},
{
template: pageTemplate,
title: 'raycast',
filename: 'raycast.html',
class: 'raycast',
head: ``,
body: `
<script>
window.RayCast();
</script>
`,
},
];
let links = '<ul>';
htmlFiles.forEach((htmlFile) => {
links += `<li><a href="${htmlFile.filename}">${htmlFile.title}</a></li>`;
});
links += '</ul>';
htmlFiles.push({
template: pageTemplate,
title: 'index',
filename: 'index.html',
class: 'index',
head: '',
body: links,
});
htmlFiles.forEach((htmlFile) => {
plugins.push(
new HtmlWebpackPlugin({
templateContent: htmlFile.template(htmlFile),
filename: htmlFile.filename,
env: argv.mode,
inject: 'head',
scriptLoading: 'blocking',
})
);
});
if (isDev) {
plugins.push(new webpack.SourceMapDevToolPlugin());
}
return {
entry,
context: path.resolve(__dirname, 'src'),
target: 'web',
devtool: false,
output: {
path: path.resolve(__dirname, 'build'),
filename: '[name].js',
publicPath: './',
},
resolve: {
extensions: ['.js', '.jsx', '.json'],
},
mode: 'development',
module: {
rules: [
{
test: /\.(sa|sc|pc|c)ss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: './',
},
},
'css-loader',
'postcss-loader',
],
},
{
test: /\.(js|jsx)$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel-loader',
},
{
test: /\.(xml|svg|txt|md|hbs|mustache|glsl)$/,
use: 'raw-loader',
},
{
test: /\.(woff2?|ttf|eot)(\?.*)?$/i,
use: 'file-loader?name=fonts/[name].[ext]',
},
{
test: /\.(svg|jpe?g|png|gif)(\?.*)?$/i,
use: 'file-loader?name=img/[name].[ext]',
},
{
test: /\.csv$/,
loader: 'csv-loader',
options: {
dynamicTyping: true,
header: true,
skipEmptyLines: true,
},
},
],
},
plugins: plugins,
stats: { colors: true },
devServer: {
port: process.env.PORT || 9001,
host: process.env.HOST || '0.0.0.0',
disableHostCheck: true,
publicPath: '/',
contentBase: './build',
// https: true,
},
};
};