Configure the Editor license
Set the browser Editor license identity.
Set the license key when you create the Editor. When telemetry is enabled, the browser Editor sends it with document-open events. It is client-visible configuration, not a secret or an authorization credential.
const superdoc = new SuperDoc({
selector: '#editor',
document: '/contract.docx',
licenseKey: import.meta.env.VITE_SUPERDOC_LICENSE_KEY,
});When telemetry is enabled and you omit the key, document-open events use the community and evaluation identity. Browser build variables remain visible to the person running the application. Keep document access, collaboration credentials, and service authorization separate from the license identity.
This page covers Editor configuration. See Licensing for the open-source and commercial terms and the licensing contact.
Continue with Telemetry to make the Editor's network behavior explicit.