mirror of
https://git.sr.ht/~emersion/gamja
synced 2024-11-14 19:25:26 -05:00
Avoid using export * as namespace
This isn't supported by Safari.
This commit is contained in:
parent
2d032259db
commit
4309cf44d3
1 changed files with 2 additions and 1 deletions
|
@ -4,4 +4,5 @@ import { h } from "../node_modules/preact/dist/preact.module.js";
|
|||
import htm from "../node_modules/htm/dist/htm.module.js";
|
||||
export const html = htm.bind(h);
|
||||
|
||||
export * as linkifyjs from "../node_modules/linkifyjs/dist/linkify.module.js";
|
||||
import * as linkifyjs from "../node_modules/linkifyjs/dist/linkify.module.js";
|
||||
export { linkifyjs };
|
||||
|
|
Loading…
Reference in a new issue