22 Star 41 Fork 2

小为 / iReact

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 580 Bytes
一键复制 编辑 原始数据 按行查看 历史
aTool 提交于 2016-06-11 14:16 . fill testcase, add 2 react component
var webpack = require('webpack');
module.exports = {
entry: {
'bundle': './res/js/src/index.jsx'
},
output: {
path: './res/js/dist/',
filename: '[name].js'
},
module: {
loaders:[{
test: /\.js[x]?$/,
exclude: /node_modules/,
loader: 'babel-loader?presets[]=es2015&presets[]=react',
}, {
test: /\.css$/,
loader: 'style-loader!css-loader'
}, {
test: /\.(png|jpg)$/,
loader: 'url-loader?limit=512'
}]
},
plugins: [
new webpack.optimize.UglifyJsPlugin({ compress: {warnings: false}})
]
};
JavaScript
1
https://gitee.com/hustcc/iReact.git
git@gitee.com:hustcc/iReact.git
hustcc
iReact
iReact
gh-pages

搜索帮助