Skip to content

Commit d89a3fa

Browse files
committed
add image optimizer
1 parent 4954dac commit d89a3fa

File tree

3 files changed

+2085
-5
lines changed

3 files changed

+2085
-5
lines changed

next.config.js

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// next.config.js
2+
// next.config.js
3+
const withPlugins = require('next-compose-plugins');
4+
const optimizedImages = require('next-optimized-images');
5+
6+
module.exports = withPlugins([
7+
[optimizedImages, {
8+
// default options, change as needed. See https://github.com/cyrilwanner/next-optimized-images#configuration.
9+
inlineImageLimit: 8192,
10+
imagesFolder: 'images',
11+
imagesName: '[name]-[hash].[ext]',
12+
handleImages: ['jpeg', 'png', 'svg', 'webp', 'gif'],
13+
removeOriginalExtension: false,
14+
optimizeImages: true,
15+
optimizeImagesInDev: false,
16+
mozjpeg: {
17+
quality: 80,
18+
},
19+
optipng: {
20+
optimizationLevel: 3,
21+
},
22+
pngquant: false,
23+
gifsicle: {
24+
interlaced: true,
25+
optimizationLevel: 3,
26+
},
27+
svgo: {
28+
// enable/disable svgo plugins here
29+
},
30+
webp: {
31+
preset: 'default',
32+
quality: 75,
33+
},
34+
}],
35+
]);

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
"@emotion/react": "^11",
1313
"@emotion/styled": "^11",
1414
"framer-motion": "^6",
15+
"imagemin-optipng": "^8.0.0",
1516
"next": "^12.0.10",
17+
"next-compose-plugins": "^2.2.1",
18+
"next-optimized-images": "^2.6.2",
1619
"react": "17.0.2",
1720
"react-dom": "17.0.2"
1821
},

0 commit comments

Comments
 (0)