私のWebpackは、それぞれが100行未満の〜20-30ファイルの小さなプロジェクトで大きなmain.jsファイル(1.7mb)を生成しました。必要な依存関係は数が少なく(React、Fluxible)、私は理解できるすべての最適化プラグインを使用しています:
module.exports = {
output: {
path: './build',
publicPath: '/public/',
filename: '[name].js'
},
debug: false,
devtool: 'eval',
target: 'web',
entry: [
'bootstrap-sass!./bootstrap-sass.config.js',
'./client.js',
],
stats: {
colors: true,
reasons: false
},
resolve: {
extensions: ['', '.js'],
alias: {
'styles': __dirname + '/src/styles',
'components': __dirname + '/src/scripts/components',
'actions': __dirname + '/src/scripts/actions',
'stores': __dirname + '/src/scripts/stores',
'constants': __dirname + '/src/scripts/constants',
'mixins': __dirname + '/src/scripts/mixins',
'configs': __dirname + '/src/scripts/configs',
'utils': __dirname + '/src/scripts/utils'
}
},
module: {
loaders: [
{ test: /\.css$/, loader: 'style!css' },
{ test: /\.js$/, exclude: /node_modules/, loader: require.resolve('babel-loader') },
{ test: /\.json$/, loader: 'json-loader'},
{ test: /\.(png|svg|jpg)$/, loader: 'url-loader?limit=8192' },
{ test: /\.(ttf|eot|svg|woff|woff(2))(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "url?name=/[name].[ext]"},
{ test: /\.scss$/,
loader: ExtractTextPlugin.extract('style-loader',
'css!sass?outputStyle=expanded&' +
"includePaths[]=" +
(path.resolve(__dirname, "./node_modules"))
)
}
]
},
plugins: [
new webpack.NoErrorsPlugin(),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"windows.jQuery": "jquery"
}),
new ExtractTextPlugin("[name].css", {allChunks: true}),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin(),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.AggressiveMergingPlugin()
],
};
私は何を間違っているのですか、またはどこでファイルのサイズをさらに改善できますか?
ここで(devtools: 'source-map')を実行するだけで、2.1mbから160kbにgzip圧縮され、デフォルト設定でuglifyjsが使用されます(gzipを使用しないと、約670kbになります)。
それはおそらくthat素晴らしいものではありませんが、少なくとももう狂っていません。
後世のために、これが私のwebpack設定です:
// webpack.config.js
var webpack = require('webpack');
module.exports = {
devtool: 'source-map',
entry: [
'webpack-dev-server/client?http://127.0.0.1:2992',
'webpack/hot/only-dev-server',
'./js/main'
],
output: {
path: './out/',
filename: 'main.js',
chunkFilename: '[name]-[chunkhash].js',
publicPath: 'http://127.0.0.1:2992/out/'
},
module: {
loaders: [
{
test: /\.jsx?$/,
exclude: /(node_modules|bower_components)/,
loaders: ['react-hot', 'babel?optional=runtime&stage=0&plugins=typecheck']
}
]
},
progress: true,
resolve: {
modulesDirectories: [
'js',
'node_modules'
],
extensions: ['', '.json', '.js']
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
new webpack.DefinePlugin({
'process.env': {
// This has effect on the react lib size
'NODE_ENV': JSON.stringify('production'),
}
}),
new webpack.optimize.UglifyJsPlugin()
]
};
少なくとも設定する必要があります
plugins: [
new webpack.DefinePlugin({
'process.env': {
// This has effect on the react lib size
'NODE_ENV': JSON.stringify('production'),
}
}),
...
],
これはReactでかなり役立ちます。
さらに、実稼働環境ではdevtool
をsource-map
に設定することをお勧めします。詳細は 公式ドキュメント を参照してください。
分析ツール を使用して出力を検査することができます。 JSONを取得するには、webpack --json > stats.json
などを実行してから、そのstats.json
をツールに渡す必要があると想定しています。それはあなたにいくつかの洞察を与えるかもしれません。
Webpack Bundle Analyzer もご覧ください。
便利なインタラクティブなズーム可能なツリーマップとしてバンドルコンテンツを表します。