forked from MeetMartin/quotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.development.config.js
90 lines (89 loc) · 2.56 KB
/
webpack.development.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
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
const webpack = require('webpack');
module.exports = {
mode: "development",
context: path.resolve(__dirname, 'src'),
entry: [
'./index.js'
],
module: {
rules: [
{
test: /\.js$/,
sideEffects: false,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader'
}
]
},
{
test: /\.(mp4)$/i,
use: [{
loader: 'file-loader',
options: {
name: '[path][name].[ext]'
}
}]
},
{
test: /\.(gif|png|jpg|svg|ico)$/i,
exclude: /fonts/,
use: [
{
loader: 'file-loader',
options: {
name: '[path][name].[ext]'
}
},
{
loader: 'image-webpack-loader',
options: {
mozjpeg: {
progressive: true,
quality: 80
},
optipng: {
enabled: false
},
pngquant: {
quality: [0.65, 0.90],
speed: 4
},
gifsicle: {
interlaced: false
}
}
}
]
},
{
test: /.(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/i,
exclude: /images/,
use: [{
loader: 'file-loader',
options: {
name: '[path][name].[ext]'
}
}]
}
]
},
plugins: [
new webpack.ProgressPlugin(),
new HtmlWebpackPlugin({template: './index.html'})
],
devServer: {
contentBase: path.join(__dirname, 'src'),
port: 8080,
overlay: {
warnings: true,
errors: true
},
quiet: true,
historyApiFallback: true,
disableHostCheck: true
}
};