-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
41 lines (38 loc) · 989 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
39
40
const path = require('path');
const outputDir = path.join(__dirname, './public/js');
const isProduction = process.env.NODE_ENV === 'production';
module.exports = {
entry: {
reduxCounter: path.join(__dirname, './src/redux/counter/index'),
reduxTodos: path.join(__dirname, './src/redux/todos/index'),
reduxFormSimple: path.join(__dirname, './src/redux-form/index'),
form: path.join(__dirname, './src/form/index'),
reactComponent: path.join(__dirname, './src/react-components/index'),
},
output: {
path: outputDir,
filename: '[name].bundle.js',
},
resolve: {
extensions: ['.js', '.jsx'],
},
devtool: isProduction ? 'source-map' : 'cheap-module-eval-source-map',
module: {
rules: [
{
test: /\.jsx?/,
use: 'babel-loader',
},
{
test: /\.css?/,
use: ['style-loader', 'css-loader'],
},
],
},
externals: [
{
window: 'window',
document: 'document',
},
],
};