-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
85 lines (84 loc) · 2.06 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
const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
module.exports = {
entry: ['babel-polyfill', path.normalize(__dirname + '/src/js/index')],
devtool: 'cheap-module-source-map',
output: {
filename: 'bundle.js',
path: path.join(__dirname, 'dist'),
publicPath: '/public/',
},
module: {
rules: [
{
test: /\.js|jsx$/,
exclude: /node_modules/,
include: [path.resolve(__dirname, 'src', 'js')],
use: [
{
loader: 'babel-loader',
options: {
plugins: ['transform-runtime', 'transform-object-rest-spread'],
presets: ['env', 'react']
},
},
{
loader: path.resolve(__dirname, 'lib', 'featureEnabler.js'),
options: {
filter: true
}
}
]
}, {
test: /\.(sa|sc|c)ss$/,
use: [
'css-hot-loader',
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 2,
},
},
{
loader: 'postcss-loader',
options: {
ident: 'postcss',
plugins: () => {
require('autoprefixer')();
},
},
},
'sass-loader',
],
},
],
},
devServer: {
contentBase: path.join(__dirname, 'public'),
hot: true,
},
plugins: [
new CleanWebpackPlugin(['dist']),
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[id].css',
}),
],
optimization: {
minimizer: [
new UglifyJsPlugin({
cache: true,
parallel: true,
sourceMap: true,
}),
new OptimizeCSSAssetsPlugin({}),
],
},
resolve: {
extensions: ['.js', '.jsx'],
},
};