server-esm: Change export object to export default object

This commit is contained in:
Elian Doran
2024-07-18 21:42:44 +03:00
parent 2750df04a3
commit 55eecb0f61
48 changed files with 48 additions and 48 deletions

View File

@@ -12,6 +12,6 @@ function renderToHtml(content: string, title: string) {
return htmlSanitizer.sanitize(h1Handled);
}
export = {
export default {
renderToHtml
};