Answer the question
In order to leave comments, you need to log in
How to configure image compression and output in webpack?
Hello!
Tell me how to properly configure image compression and output to the dist / img folder
module.exports = {
optimization: {
minimizer: [
new UglifyJsPlugin({
cache: true,
parallel: true,
sourceMap: true,
}),
new OptimizeCSSAssetsPlugin({}),
],
},
context: path.resolve(__dirname, '../src'),
entry: {
main: ['./js/index.js'],
},
mode: 'production',
output: {
filename: 'js/[name].js',
path: path.resolve(__dirname, '../dist/'),
publicPath: '/',
},
module: {
rules: [
{
test: /\.pug$/,
loader: 'pug-loader',
},
{
test: /\.(woff(2)?|ttf|eot)(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'fonts/',
},
},
{
test: /\.(gif|png|jpe?g|svg)$/i,
use: [
'file-loader',
{
loader: 'image-webpack-loader',
options: {
mozjpeg: {
progressive: true,
quality: 65,
},
// optipng.enabled: false will disable optipng
optipng: {
enabled: false,
},
pngquant: {
quality: [0.65, 0.9],
speed: 4,
},
gifsicle: {
interlaced: false,
},
// the webp option will enable WEBP
webp: {
quality: 75,
},
},
},
],
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question