-
Notifications
You must be signed in to change notification settings - Fork 103
/
webpack.dev.config.js
executable file
·59 lines (51 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
58
59
/**
* Created by aresn on 16/7/5.
*/
var webpack = require('webpack');
var config = require('./webpack.base.config');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var fs = require('fs');
config.devtool = '#source-map'; // source-map
config.output.publicPath = '/'; // 资源路径
config.output.filename = '[name].js'; // 入口js命名
config.output.chunkFilename = '[name].chunk.js'; // 路由js命名
// config.module.rules[0].options.loaders = {
// css: ExtractTextPlugin.extract({
// use: [
// 'style-loader',
// 'css-loader',
// 'autoprefixer-loader'
// ],
// fallback: 'vue-style-loader'
// }),
// less: ExtractTextPlugin.extract({
// use: [
// 'vue-style-loade',
// 'css-loader',
// 'less-loader'
// ]
// })
// };
config.plugins = (config.plugins || []).concat([
new ExtractTextPlugin({
filename: '[name].css',
allChunks: true,
disable: true
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendors',
filename: 'vendors.js'
}),
new HtmlWebpackPlugin({
filename: './index.html',
template: './src/template/index.ejs',
inject: false
})
]);
// 写入环境变量
fs.open('./src/config/env.js', 'w', function (err, fd) {
var buf = 'export default "development";';
fs.write(fd, buf, 0, buf.length, 0, function (err, written, buffer){});
});
module.exports = config;