generated from einomi/frontenso-11ty-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
44 lines (40 loc) · 1.03 KB
/
webpack.config.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
'use strict';
const path = require('path');
// eslint-disable-next-line no-unused-vars
const webpack = require('webpack');
const IS_PRODUCTION = require('./env').IS_PRODUCTION;
const entryPoints = {
bundle: path.resolve(__dirname, 'src/js/index.js'),
};
module.exports = {
entry: Object.keys(entryPoints).reduce((acc, currentKey) => {
acc[currentKey] = [entryPoints[currentKey]];
return acc;
}, {}),
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist/js'),
publicPath: '/js',
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
use: 'babel-loader',
},
{
test: /\.(glsl|vs|fs|vert|frag)$/,
type: 'asset/source',
},
],
},
devtool: IS_PRODUCTION ? undefined : 'eval',
mode: IS_PRODUCTION ? 'production' : 'development',
optimization: {
minimize: IS_PRODUCTION,
},
// plugins: [
// // Uncomment this section if you want to use environment variables in your JS
// // new webpack.EnvironmentPlugin(['STATIC_PATH'])
// ],
};