我已将CompressionPlugin添加到我的webpack配置中。
const webpack = require('webpack')
const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
var CompressionPlugin = require('compression-webpack-plugin')
module.exports = {
context: path.join(__dirname, '/src'),
entry: {
app: './app.js'
},
output: {
path: path.join(__dirname, '/dist'),
filename: '[name].bundle.js'
},
devServer: {
contentBase: path.join(__dirname, '/src')
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: [{
loader: 'babel-loader'
}]
},
{
test: /\.(woff|woff2|eot|ttf)$/,
use: ['url-loader?limit=10000']
},
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader']
}
]
},
plugins: [
new HtmlWebpackPlugin({
favicon: 'favicon.ico',
template: 'index.html'
}),
new CompressionPlugin({
asset: '[path].gz[query]',
algorithm: 'gzip',
test: /\.(js|html)$/,
deleteOriginalAssets: true
})
]
}
现在取代我的app.bundle.js
而不是app.bundle.js.gz
。那是对的。
但是在我的index.html中,我仍在使用app.bundle.js
路径。
当浏览器请求app.bundle.js
时,如何告诉webpack-dev-server提供gzip压缩文件?在生产中,适当的Web服务器(如Apache或nginx)可以做到这一点。