-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.dev.js
44 lines (43 loc) · 1.04 KB
/
webpack.dev.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
/* eslint import/no-extraneous-dependencies: "off" */
const merge = require('webpack-merge')
const common = require('./webpack.common.js')
const FriendlyErrorsWebpackPlugin = require('friendly-errors-webpack-plugin');
const ErrorOverlayPlugin = require('error-overlay-webpack-plugin');
const SimpleProgressWebpackPlugin = require('simple-progress-webpack-plugin');
module.exports = merge(common, {
mode: 'development',
module: {
rules: [
{
test: /\.s(a|c)ss$/,
use: [
{
loader: 'style-loader',
}, {
loader: 'css-loader',
}, {
loader: 'sass-loader',
}
],
},
],
},
devServer: {
historyApiFallback: true,
clientLogLevel: "error",
compress: true,
stats: "errors-only",
host: 'localhost',
port: 4000,
open: true,
overlay: {
warnings: true,
errors: true
}
},
plugins: [
new FriendlyErrorsWebpackPlugin(),
new ErrorOverlayPlugin(),
new SimpleProgressWebpackPlugin(),
],
})