Skip to content

'convex dashboard' command not working in windows 11 #96

@2u841r

Description

@2u841r

convex dashboard not opening in Windows 11.

default browser: Chrome 141.0.7390.66 and Brave Brave 1.85.56 (Official Build) nightly (64-bit)
IDE: Cursor and VS Code
Terminal: bash, cmd, powershell

async function logOrOpenUrl(ctx: Context, url: string, shouldOpen: boolean) {
if (shouldOpen) {
logMessage(chalk.gray(`Opening ${url} in the default browser...`));
try {
// This can fail e.g. on a headless dev machine.
await open(url);
} catch {
logWarning(
`⚠️ Could not open dashboard in the default browser.\nPlease visit: ${url}`,
);
}
} else {
logOutput(url);
}
}

and there is no logWarning or logOutput

in my package.json -

 "predev": "convex dev --until-success && convex dashboard",

but opening in Pop!_OS

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions