Definition
renotify (Notification option)
renotify is a boolean option, e.g. { tag: "order-42", renotify: true }, that only has an effect when combined with tag. Without renotify, a new notification that replaces an existing same-tag notification updates silently with no new sound or vibration; with renotify: true, the replacement alerts the user exactly as a brand-new notification would.
The spec requires tag to be set for renotify to do anything — passing renotify: true without a tag has no observable effect since there is nothing to "re-notify" in place of.
This is useful for status updates that genuinely warrant re-alerting, such as "Your order has shipped" replacing an earlier "Order confirmed" notification under the same tag, versus a live chat message-count bump that should not buzz the phone repeatedly.
Overusing renotify defeats the purpose of tag-based grouping in the first place, since the user experiences the same repeated interruption a stack of untagged notifications would cause.
Support and exact behaviour are documented alongside the rest of the Notification options on MDN: https://developer.mozilla.org/en-US/docs/Web/API/Notification/renotify.