-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
73 lines (70 loc) · 1.92 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
const webpack = require('webpack');
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const isProduction = process.env.NODE_ENV === 'production';
const src = path.resolve(__dirname, 'src');
const build = path.resolve(__dirname, 'build');
const extractSass = new ExtractTextPlugin({
filename: '[name].css'
});
const plugins = [
new HtmlWebpackPlugin({
template: path.resolve(__dirname, 'index.html')
}),
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, 'images'),
to: 'images'
}
]),
extractSass
];
if (isProduction) {
plugins.unshift(new CleanWebpackPlugin(['build']));
}
const config = {
context: src,
entry: ['./js/index.js', './scss/style.scss'],
output: {
path: build,
filename: 'bundle.js'
},
module: {
rules: [
{
test: /\.jsx?$/,
include: src,
use: [
{
loader: 'babel-loader'
}
]
},
{
test: /\.scss$/,
use: extractSass.extract({
use: [ {loader: 'css-loader'}, {loader: 'sass-loader'} ]
})
},
{
test: /\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'images/'
}
}
]
},
plugins,
devServer: {
open: true,
openPage: '',
contentBase: build
},
devtool: isProduction ? undefined : 'eval-source-map'
}
module.exports = config;