Fix: update open function call to use default export for URL opening

This commit is contained in:
Osvaldo Ortega
2026-03-02 18:54:51 -08:00
parent 71eca7dfec
commit 4b93e8fe0e

View File

@@ -83,7 +83,7 @@ async function main() {
server.listen(PORT, HOST, () => {
console.log(`\n Sessions Web running at: http://${HOST}:${PORT}/\n`);
if (!args['no-open']) {
open(`http://${HOST}:${PORT}/`);
open.default(`http://${HOST}:${PORT}/`);
}
});