1 Star 0 Fork 68

zhiy0122 / freecodecamp.cn

forked from FreeCodeCamp / freecodecamp.cn 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 940 Bytes
一键复制 编辑 原始数据 按行查看 历史
var webpack = require('webpack');
var path = require('path');
var webpack = require('webpack');
var __DEV__ = process.env.NODE_ENV !== 'production';
module.exports = {
entry: './client',
output: {
filename: 'bundle.js',
path: path.join(__dirname, '/public/js'),
publicPath: 'public/'
},
module: {
loaders: [
{
test: /\.jsx?$/,
include: [
path.join(__dirname, 'client/'),
path.join(__dirname, 'common/')
],
loaders: [
'babel-loader'
]
},
{
test: /\.json$/,
loaders: [
'json-loader'
]
}
]
},
plugins: [
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurenceOrderPlugin(true),
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify(__DEV__ ? 'development' : 'production')
},
'__DEVTOOLS__': !__DEV__
})
]
};
JavaScript
1
https://gitee.com/zhiy0122/freecodecamp.cn.git
git@gitee.com:zhiy0122/freecodecamp.cn.git
zhiy0122
freecodecamp.cn
freecodecamp.cn
dev

搜索帮助