2 Star 1 Fork 0

kanaier/learn_mobx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.production.config.js 2.40 KB
一键复制 编辑 原始数据 按行查看 历史
yu.rongsheng 提交于 2017-05-05 14:40 . first commit
var path = require('path')
var webpack = require('webpack')
var ExtractTextPlugin = require("extract-text-webpack-plugin")
var node_module_dir = path.resolve(__dirname, 'node_module')
module.exports = {
entry: {
app: [path.resolve(__dirname, 'app/main.js'), ],
common: ['react','react-dom','mobx','mobx-react']
},
output: {
path: path.resolve(__dirname, 'build/static/js'),
chunkFilename: '[name].[chunkhash:5].js',
// 这里需要根据服务器来更改,
publicPath:'/static/js/',
filename: 'app.[chunkhash:5].js'
},
module: {
rules: [{
test: /\.(js|jsx)$/,
use: ["babel-loader"],
include: [path.resolve(__dirname, 'app')],
exclude: [node_module_dir],
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: 'css-loader?minimize&modules&localIdentName=_[local]_[hash:base64:5]',
}),
include: [path.resolve(__dirname, 'app')],
exclude: [node_module_dir],
},
]
},
node: {Buffer: false},
plugins: [
new webpack.DefinePlugin({
__DEV__: JSON.stringify(JSON.parse(process.env.BUILD_DEV || 'false'))
}),
new webpack.LoaderOptionsPlugin({minimize: true}),
new webpack.optimize.UglifyJsPlugin({
// 最紧凑的输出
beautify: false,
// 删除所有的注释
comments: false,
compress: {
// 在UglifyJs删除没有用到的代码时不输出警告
warnings: false,
// 删除所有的 `console` 语句
// 还可以兼容ie浏览器
drop_console: true,
// 内嵌定义了但是只用到一次的变量
collapse_vars: true,
// 提取出出现多次但是没有定义成变量去引用的静态值
reduce_vars: true,
}
}),
new webpack.NamedModulesPlugin(),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("production")
}
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'common',
minChunks: 2,
filename:'common.[chunkhash:5].js'
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
chunks: ['common'],
filename:'manifest.[chunkhash:5].js'
}),
new ExtractTextPlugin({
filename:(getPath) => {
return getPath('../css/[name].css').replace('css/js', 'css');
},
allChunks:true
}),
],
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/kanaier/learn_mobx.git
git@gitee.com:kanaier/learn_mobx.git
kanaier
learn_mobx
learn_mobx
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385