yapi/ykit.js

25 lines
614 B
JavaScript
Raw Normal View History

2017-07-05 21:08:51 +08:00
var path = require('path');
2017-07-06 01:09:33 +08:00
var ExtractTextPlugin = require("extract-text-webpack-plugin");
2017-07-05 21:08:51 +08:00
2017-07-05 19:31:50 +08:00
module.exports = {
2017-07-06 14:25:52 +08:00
plugins: ['qunar', 'antd'],
devtool: 'cheap-source-map',
config: {
exports: [
'./index.js'
],
modifyWebpackConfig: function(baseConfig) {
baseConfig.context = path.resolve(__dirname, "client");
return baseConfig;
}
},
server: {
// true/false默认 false效果相当于 ykit server --hot
hot: true,
// true/false默认 false开启后可在当前打开的页面提示打包错误
overlay: true
},
hooks: {},
commands: []
2017-07-05 19:31:50 +08:00
};