-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathwebpack.config.babel.js
92 lines (90 loc) · 2.28 KB
/
webpack.config.babel.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
import webpack from 'webpack';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import {
getDevTool, getEntry, getEnvPlugins, getFileName, getOptimisers, getStyleLoaders, resolvePath
} from './webpackHelpers';
export default (_, argv) => ({
devtool: getDevTool(argv),
entry: getEntry(argv),
externals: {
'react/addons': 'react',
'react/lib/ExecutionEnvironment': 'react',
'react/lib/ReactContext': 'react'
},
output: {
path: resolvePath('client/assets'),
filename: getFileName(argv),
chunkFilename: getFileName(argv),
publicPath: '/'
},
mode: argv.mode,
module: {
rules: [
{
test: /(\.js$)/,
exclude: /node_modules/,
include: resolvePath('client/src'),
use: [
{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-react', '@babel/preset-env']
}
}
]
},
{
test: /\.(c|sa|sc)ss$/,
use: getStyleLoaders(argv),
},
{
test: /\.(gif|jpe?g|png|svg)(\?v=\d+\.\d+\.\d+)?$/,
use: {
loader: 'file-loader',
options: {
name: 'client/assets/images/[name].[hash:4].[ext]'
}
}
},
{
test: /\.(eot|ttf|woff2?)(\?v=\d+\.\d+\.\d+)?$/,
use: {
loader: 'file-loader',
options: {
name: 'client/assets/fonts/[name].[hash:4].[ext]'
}
}
},
{
test: /\.(aac|flac|mkv|mp3|mp4|ogg|wma|wmv)(\?v=\d+\.\d+\.\d+)?$/,
use: {
loader: 'file-loader',
options: {
name: 'client/assets/media/[name].[hash:4].[ext]'
}
}
}
]
},
...getOptimisers(argv),
resolve: {
extensions: ['.js', '.json', '.jsx'],
modules: [__dirname, 'client/src', 'node_modules'],
},
plugins: [
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
new MiniCssExtractPlugin({
filename: '[name].[hash].css',
chunkFilename: '[id].[hash].css'
}),
new HtmlWebpackPlugin({
inject: true,
hash: true,
title: 'Document Manager',
template: 'client/template.html'
}),
...getEnvPlugins(argv)
]
});