gpt4 book ai didi

reactjs - 为什么我的 Webpack ReactJS App 这么大?

转载 作者:行者123 更新时间:2023-12-05 08:57:10 25 4
gpt4 key购买 nike

在打包我的 Webpack ReactJS 应用程序以用于生产时,我遵循了尽可能多的提示。不幸的是,文件大小仍然是 3MB。我做错了什么?

这是我的 Webpack 配置文件:

var path = require('path')
var webpack = require('webpack')

module.exports = {
devtool: 'cheap-module-eval-source-map',
entry: [
'webpack-hot-middleware/client',
'./index'
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle-webpack.js',
publicPath: './'
},
plugins: [
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
screw_ie8: true,
warnings: false
}
})
],
module: {
loaders: [
{
test: /\.js$/,
loaders: [ 'babel' ],
exclude: /node_modules/,
include: __dirname
},
{
test: /\.css$/,
loader: "style-loader!css-loader"
},
{test: /node_modules\/react-chatview/, loader: 'babel' }
]
}
}

如有任何帮助,我们将不胜感激!

我用下面的命令打包:

> NODE_ENV=production webpack -p 

我得到以下输出:

bundle-webpack.js  3.1 MB       0  [emitted]  main

最好的,

亚伦

最佳答案

看起来你那里还有相当多的开发内容,例如模块热更换。

React Transform Boilerplate 查看 webpack.config.prod.js作为指南。

您还可以通过只包含您需要的包的部分而忽略其余部分来优化您的导入。请参阅:Reduce Your bundle.js File Size By Doing This One Thing .

关于reactjs - 为什么我的 Webpack ReactJS App 这么大?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35856964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com