1 Star 0 Fork 0

someu/React-redux-example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 854 Bytes
一键复制 编辑 原始数据 按行查看 历史
someu 提交于 2018-05-13 23:14 . react-redux example
var htmlWebpackPlugin = require('html-webpack-plugin');
var path = require('path');
var webpack = require('webpack');
module.exports = {
entry : {
index : ['./app/index.js'],
},
output : {
filename : 'js/[name].js',
path : path.resolve(__dirname,'dist')
},
module : {
rules : [
{
test : /\.js$/,
loaders : ['babel-loader?cacheDirectory=true']
},
{
test : /\.css$/,
loader : ['style-loader','css-loader']
}
]
},
plugins : [
new htmlWebpackPlugin({
template : './app/index.html',
chunks : ['index'],
filename : 'index.html', //相对于output的path
title : 'index',
inject : 'body'
})
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/someu/React-redux-example.git
git@gitee.com:someu/React-redux-example.git
someu
React-redux-example
React-redux-example
master

搜索帮助