forked from baukh789/GridManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack-dev-config.js
48 lines (40 loc) · 1.09 KB
/
webpack-dev-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
const path = require('path');
const ExtractTextWebpackPlugin = require('extract-text-webpack-plugin');
const genRules = require('./webpack-common.loader');
// API: http://www.css88.com/doc/webpack2/guides/development/
const config = {
// map
// http://www.css88.com/doc/webpack2/configuration/devtool/
devtool : 'source-map',
// 入口文件配置
context: path.join(__dirname, "src/"),
// 入口文件配置
entry: {
js: './js/index.js'
},
// 配置模块如何解析
resolve:{
extensions: [".js"] //当requrie的模块找不到时,添加这些后缀
},
// 文件导出的配置
output:{
// path: '/' ,
filename: "js/gm.js",
// publicPath 对于热替换(HMR)是必须的,让webpack知道在哪里载入热更新的模块(chunk)
publicPath: "/"
},
// 以插件形式定制webpack构建过程
plugins: [
// 将样式文件 抽取至独立文件内
new ExtractTextWebpackPlugin({
filename: 'css/gm.css',
disable: false,
allChunks: true
})
],
// 处理项目中的不同类型的模块
module: {
rules: genRules('src', true)
}
};
module.exports = config;