-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
Hi, I've been trying to hide the console window created by the webview in a compiled Deno binary.
Using --no-terminal in the compilation flags and starting the binary with a minimal script (see below) results in a terminal still showing up.
import { createWebView } from "@justbe/webview";
const webview = await createWebView({
title: "Deno WebView Test",
url: "https://google.com",
size: {
width: 854,
height: 480
},
ipc: true,
});
await webview.waitUntilClosed();When not using --no-terminal, logs are shown in what I can only assume to be the same terminal window the webview uses.
Is there an option to disable this window?

Metadata
Metadata
Assignees
Labels
No labels