This repository has been archived by the owner on Oct 22, 2020. It is now read-only.
forked from Coffcer/vue-chat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
75 lines (73 loc) · 2.08 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
const path = require('path');
const webpack = require('webpack');
module.exports = {
// 入口文件
entry: './src/main.js',
output: {
// 打包后输出的目录
path: path.resolve(__dirname, './dist'),
// 打包后资源文件的前缀
publicPath: '/dist/',
filename: 'build.js'
},
resolve: {
// require时省略的扩展名,如:require('module') 不需要module.js
extensions: ['.js', '.vue'],
// 别名
alias: {
components: path.join(__dirname, './src/components'),
'vue$': 'vue/dist/vue.esm.js'
},
},
// 处理不同后缀的文件
module: {
rules: [{
test: /\.vue$/,
use: 'vue-loader'
}, {
test: /\.js$/,
use: 'babel-loader',
exclude: /node_modules/
}, {
test: /\.css$/,
use: ['vue-style-loader', 'css-loader']
}, {
test: /\.less$/,
use: ['vue-style-loader', 'css-loader', 'less-loader']
}, {
test: /\.(png|jpg|gif|svg)$/,
use: {
loader: 'file',
options: {
name: '[name].[ext]?[hash]'
}
}
}]
},
// webpack-dev-server配置
devServer: {
historyApiFallback: true,
noInfo: true
},
// 开启source-map,webpack有多种source-map,在官网文档可以查到
devtool: '#eval-source-map'
};
// 生产环境,运行npm run build则执行这里
if (process.env.NODE_ENV === 'production') {
module.exports.devtool = '#source-map';
// http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([
// 环境变量
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
// 压缩代码
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
})
]);
}