Hi,
I'm enjoying MathJax 4.1.0!
Is there a way to get tex2svgPromise to always render svg output without altering the user's settings in local storage before initializing MathJax?
I'm using the window.MathJax.tex2svgPromise(tex, options) function from a web page and expected it to always return a container with one or more SVGs in it. However, the user's settings from other pages on the site apparently override my config and unexpectedly, tex2svgPromise is returning a container with CHTML rendering:

Here is the URL I'm loading and the config I'm using.
window.MathJax = {
loader: { load: ["[tex]/mhchem"] },
tex: { packages: { "[+]": ["mhchem"] } },
svg: { fontCache: "none" },
options: {
enableMenu: false,
menuOptions: {
settings: {
renderer: "SVG",
enrich: false,
speech: false,
braille: false,
collapsible: false,
assistiveMml: false,
},
},
},
};
Thanks for any help!