-
Notifications
You must be signed in to change notification settings - Fork 21
/
webpack.config.js
98 lines (96 loc) · 2.04 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
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
/*
* This contains the configuration for our module.
* We use this configuration to figure out our start points, logical structure and other optimizations possible.
* These may (in the future) include :
* - Splitting tthe code based on entry points
* - Adding multiple outputs using the same config
*/
const path = require('path');
module.exports = {
mode: 'production',
entry: ['src/index.js'],
output: {
path: path.resolve(__dirname, 'build'),
filename: 'index.js',
libraryTarget: 'commonjs2'
},
resolve: {
extensions: ['.js', '.jsx']
},
externals: {
react: {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react'
},
'react-dom': {
root: 'ReactDOM',
commonjs2: 'react-dom',
commonjs: 'react-dom',
amd: 'react-dom'
}
},
module : {
rules: [
{
test: /\.txt$/,
use: 'raw-loader'
},
{
enforce: 'pre',
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'eslint-loader',
options: {
emitError: true,
failOnError: true,
emitWarning: true,
failOnWarning: false,
},
resolve: {
extensions: ['.js', '.jsx']
}
},
{
test: /\.jsx?$/,
use: {
loader: 'babel-loader',
query: {
presets: ['@babel/preset-env', '@babel/preset-react']
}
},
resolve: {
extensions: ['.js', '.jsx']
},
exclude: /node_modules/
},
{
test: /\.(html)$/,
use: {
loader: 'html-loader',
options: {
attrs: [':data-src']
}
}
},
{
test: /\.(woff|woff2|eot|ttf)$/,
loader: 'url-loader?limit=100000'
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loader: 'file-loader'
}
]
},
resolve: {
modules: [
path.resolve(__dirname, './'),
'./node_modules'
]
},
devServer: {
port: 3001
},
};