You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we've used dialogs for some time, but we're in the process of updating our toolchain to use vite rather than browserify. it seems that browserify (or is it babel?) made it really easy to sub dialogs' calls to fs.readFileSync() ... however i don't think this is so straightforward with modern tools like vite.
what do you think about replacing the fs.readFileSync() calls in dialogs with inlined resources?
it is a bit funny that dialogs makes use of both fs.readFileSync()anddocument.appendChild() meaning in it's unprocessed form, it can't run in the browser, or in node.
with thanks
The text was updated successfully, but these errors were encountered:
hi,
we've used
dialogs
for some time, but we're in the process of updating our toolchain to use vite rather than browserify. it seems that browserify (or is it babel?) made it really easy to subdialogs
' calls tofs.readFileSync()
... however i don't think this is so straightforward with modern tools like vite.what do you think about replacing the
fs.readFileSync()
calls indialogs
with inlined resources?it is a bit funny that
dialogs
makes use of bothfs.readFileSync()
anddocument.appendChild()
meaning in it's unprocessed form, it can't run in the browser, or in node.with thanks
The text was updated successfully, but these errors were encountered: