-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.js
executable file
·127 lines (110 loc) · 2.99 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
* @Author: Nokey
* @Date: 2018-12-27 14:16:11
* @Last Modified by: Mr.B
* @Last Modified time: 2021-03-19 19:32:02
*/
'use strict';
const webpack = require('webpack')
const path = require('path')
const config = require('./config')
const poststylus = require('poststylus')
/**
* Common config that can be used in dev & prod environment
*/
const ENTRY = require('./webpack/entry')
const RULES = require('./webpack/rules').rules
const PLUGINS = require('./webpack/plugins').plugins
const RESOLVE = require('./webpack/resolve')
const OPTIMIZITION = require('./webpack/optimization')
/**
* Config
*/
const PORT = config.port
const PUBLIC_PATH = config.public_path_dev
/**
* Dev plugins
*/
// const openBrowserPlugin = require('open-browser-webpack-plugin')
module.exports = {
mode: 'development',
optimization: OPTIMIZITION,
// dectool should be false if env is production!!!
devtool: 'eval-cheap-source-map', // false || 'cheap-eval-source-map'
// devServer
devServer: {
host: '127.0.0.1',
port: PORT,
static: [{
directory: path.join(__dirname, './build')
}],
dev: {
publicPath: PUBLIC_PATH
},
hot: true,
historyApiFallback: {
index: PUBLIC_PATH
}
},
entry: ENTRY,
output: {
path: path.join(__dirname, 'build'),
filename: 'bundle/[name].js',
publicPath: PUBLIC_PATH
},
module: {
rules: RULES.concat([
{
test: /\.css$/,
use: [
'style-loader',
'css-loader'
]
},
{
test: /\.styl$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
modules: {
auto: /\.styl$/i,
localIdentName: '[local]__[hash:base64:4]'
}
}
},
{
loader: 'stylus-loader',
options: {
stylusOptions: {
use: [
poststylus([ 'autoprefixer', 'rucksack-css' ])
]
}
}
}
]
}
])
},
plugins: PLUGINS.concat([
new webpack.HotModuleReplacementPlugin()
,new webpack.DefinePlugin({
PRODUCTION: JSON.stringify(false)
})
]),
resolve: RESOLVE,
stats: {
// copied from `'minimal'`
all: false,
modules: true,
// maxModules: 0,
errors: true,
warnings: true,
// our additional options
moduleTrace: true,
errorDetails: true,
builtAt: true
}
};