When I have this in my package.json, the output is changed appropriately:
"svgr": {
"jsxRuntime": "classic-preact"
}
But this seems to have no effect :(
"svgr": {
"jsxRuntimeImport": { "source": "preact", "specifiers": ["h"] },
}
(I need to use the custom version because I'm using HyperApp as a framework, and so I need my h to be imported from the hyperapp-jsx-pragma package)
When I have this in my package.json, the output is changed appropriately:
But this seems to have no effect :(
(I need to use the custom version because I'm using HyperApp as a framework, and so I need my
hto be imported from thehyperapp-jsx-pragmapackage)