Fix svgo config deprecation

This commit is contained in:
Alice Gaudon 2021-09-22 14:59:52 +02:00
parent 16ecfd112f
commit de6d4b7e7f
1 changed files with 13 additions and 11 deletions

View File

@ -1,7 +1,6 @@
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const ImageMinimizerPlugin = require("image-minimizer-webpack-plugin");
const { extendDefaultPlugins } = require("svgo");
const CopyWebpackPlugin = require('copy-webpack-plugin');
const dev = process.env.NODE_ENV === 'development';
@ -94,18 +93,21 @@ const config = {
[
"svgo",
{
plugins: extendDefaultPlugins([
{
name: "removeViewBox",
active: false,
},
{
name: "addAttributesToSVGElement",
params: {
attributes: [{ xmlns: "http://www.w3.org/2000/svg" }],
plugins: {
name: 'preset-default',
params: {
overrides: {
removeViewBox: {
active: false,
},
addAttributesToSVGElement: {
params: {
attributes: [{xmlns: "http://www.w3.org/2000/svg"}],
},
},
},
},
]),
},
},
],
],