-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
38 lines (34 loc) · 954 Bytes
/
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
'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',
},
],
},
devtool: IS_PRODUCTION ? undefined : 'eval-source-map',
mode: IS_PRODUCTION ? 'production' : 'development',
optimization: {
minimize: IS_PRODUCTION,
},
// Uncomment this section if you want to use environment variables in your JS
// plugins: [new webpack.EnvironmentPlugin(['STATIC_PATH'])],
};