1 Star 0 Fork 0

cason6810 / iview-docs2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.dev.config.js 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
aresn 提交于 2017-04-01 15:17 . update
/**
* 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.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;
JavaScript
1
https://gitee.com/cason6810/iview-docs2.git
git@gitee.com:cason6810/iview-docs2.git
cason6810
iview-docs2
iview-docs2
master

搜索帮助