-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
101 lines (99 loc) · 3.6 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
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
/**
* configuration description
* https://github.com/webpack/docs/wiki/configuration#configuration-object-content
* webpack document
* http://webpack.github.io/docs/
*/
'use strict'
var webpack = require('webpack');
var Path = require('path');
//提取css独立成文件
var ExtractTextPlugin = require("extract-text-webpack-plugin");
var ProgressPlugin = require('webpack/lib/ProgressPlugin');
var extractSCSS = new ExtractTextPlugin('[name].css');
// var extractSCSS = new ExtractTextPlugin('[name]-[hash].css');
var makeFekitVerPlugin = require("./makeFekitVerPlugin");
module.exports = {
//生成sourcemap,便于开发调试
devtool: "source-map",
//获取项目入口js文件
entry: {
index: './static/js/app.js'
},
output: {
//文件输出目录
path: Path.join(__dirname, 'build'),
//用于配置文件发布路径,如CDN或本地服务器
publicPath: '/build/',
//根据入口文件输出的对应多个文件名
filename: '[name].js'
// filename: '[name]@[hash].js'
},
resolve: {
alias: {
'Styles': Path.join(__dirname, 'static', 'style')
},
extensions: ['', '.js', '.scss', '.json', '.jsx', '.css']
},
//各种加载器,即让各种文件格式可用require引用
module: {
// preLoaders: [{
// test: /\.jsx?$/,
// exclude: /node_modules/,
// loader: 'jsxhint'
// }],
loaders: [
//.js 或 .jsx 文件使用 babel-loader 来编译处理
{
test: /\.jsx?$/,
loaders: ['react-hot', 'babel-loader?presets[]=react,presets[]=es2015,presets[]=stage-0'],
include: [Path.join(__dirname, 'static', 'js')]
},
//.css 文件使用 style-loader、 css-loader 和 autoprefixer-loader 来处理
// style-loader:将css插入到页面的style标签,由于使用该loader会报错,故不用
// css-loader:处理css文件中的url()等
{
test: /\.css$/,
loader: 'css!autoprefixer'
},
//图片文件使用 url-loader 来处理,小于8kb的直接转为base64
{
test: /\.(png|jpg)$/,
loader: 'url-loader?limit=8192'
},
//.scss 文件使用 style-loader、css-loader、autoprefixer 和 sass-loader 来编译处理
{
test: /\.scss$/,
exclude: /node_modules/,
loader: extractSCSS.extract('css!autoprefixer!sass?sourceMap')
},
//.json 文件使用json-loader 来编译处理
{
test: /\.json$/,
loader: 'json-loader'
}
]
},
plugins: [
new ProgressPlugin(function(percentage, msg) {
console.log(parseInt(percentage * 100) + '%', msg);
}),
//提取公共脚本,默认只有一个入口时可以不用,否则需要额外引入common.js
new webpack.optimize.CommonsChunkPlugin('common.js'),
// new webpack.optimize.CommonsChunkPlugin('common@[hash].js'),
extractSCSS,
//增加公共头部
new webpack.BannerPlugin('Author by robin!'),
//增加HMR(模块热插拔)
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
//js文件的压缩
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
//生成和fekit一致的ver文件
new makeFekitVerPlugin()
]
};