How to import `renderToString` into a plain js/ts file
So, I have working serverless application, which has a
Inside I atm do:
now I would like to use
which of course doesn't work, because it's
is there a way I can build
into
handler.ts.Inside I atm do:
now I would like to use
which of course doesn't work, because it's
tsx and uses < /> etc.is there a way I can build
into
renderer.mjs that I can import into my serverless function?