Skip to content

Commit 85b3046

Browse files
committed
docs: fix missing comma
1 parent 9ed063b commit 85b3046

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ pluginImageCompress([
7979
// Options for @napi-rs/image `webp` method
8080
{ use: "webp", quality: 80 },
8181
// Options for svgo
82-
{ use: 'svg', floatPrecision: 2 }
82+
{ use: "svg", floatPrecision: 2 },
8383
// No options yet
8484
{ use: "ico" },
8585
]);
@@ -119,7 +119,7 @@ export default defineConfig({
119119
optimization: {
120120
minimizer: [
121121
// Use `...` to preserve the default JS and CSS minimizers of Rspack
122-
'...',
122+
"...",
123123
// Add the image minimizer plugins
124124
new ImageMinimizerPlugin({
125125
use: "jpeg",

0 commit comments

Comments
 (0)