Skip to content

AccessBookmark

Source: src/Cloudflare/Access/Bookmark.ts

A Cloudflare Zero Trust Access bookmark application — an unprotected link shown in the App Launcher.

Basic bookmark

const bookmark = yield* Cloudflare.AccessBookmark("Wiki", {
domain: "wiki.example.com",
});

Bookmark with a logo, hidden from the App Launcher

const bookmark = yield* Cloudflare.AccessBookmark("Wiki", {
name: "internal-wiki",
domain: "wiki.example.com",
logoUrl: "https://example.com/logo.png",
appLauncherVisible: false,
});
const app = yield* Cloudflare.AccessApplication("Wiki", {
type: "bookmark",
domain: "wiki.example.com",
});