You can use our programmatic API to print a document without annotations by setting the excludeAnnotations flag:

NutrientViewer.load(configuration)
.then((instance) => {
instance.print({
excludeAnnotations: true
});
})
.catch((error) => {
console.error("Failed to load document:", error.message);
});