SVG export is now adding "stroke-width: 0px;"
Situation
let take a simple square, no stroke:

In older versions of illustrator (example v27) it exports this
<?xml version="1.0" encoding="UTF-8"?>
<svg id="uuid-6ba987cb-39fb-40cd-98de-d8b109dabf06" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 720 720">
<g id="uuid-4f72d452-3eef-4411-a3a5-dacea231604c" data-name="red square 27">
<rect width="720" height="720" style="fill: #ed1c24;"/>
</g>
</svg>with no information on the stroke
and with v28.4.1 it now does this
<?xml version="1.0" encoding="UTF-8"?>
<svg id="uuid-9197d4b2-a83e-462e-a5ec-8eed0be30063" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 720 720">
<g id="uuid-684f80f4-6e08-4bfc-90da-cd37ceef13b5" data-name="red square 28">
<rect width="720" height="720" style="fill: #ed1c24; stroke-width: 0px;"/>
</g>
</svg>with the "stroke-width: 0px;" added to the style.
Problem
Why is this needed? no stroke style is the same as stroke 0, right? There's 1000s of information that are exported because they are "0", no need to add them.
Was this intentionally added to solve something that I don't know?
Is there a way to say to Illustrator to "not add this information" to the export?
This became a problem to us since we were targeting the stroke's style (and adding, animating it), and this basically because and unexpected hurdle.
