Hi everyone! 👋
I'm trying to modify the default behavior of links in Typebot chat responses. Currently, all links are automatically set with
target="_blank" rel="noopener noreferrer"
, causing them to open in new tabs.
I need these links to open in the same tab (
target="_self"
). I've tried:
- Using MutationObserver to modify the links
- Injecting CSS overrides
- Intercepting click events
None of these approaches worked. Is there a configuration option or recommended way to control this behavior?