-
I'm working on a project that uses multiple doc instances, so I have Is it possible to have the tags be global so that if |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Unfortunately, we don't have any easy way to achieve that, all plugins are "sandboxed" currently. In the future, React Server Components might give you the flexibility to pick/merge/render multiple plugin data the way you want, but we don't support that yet (track #9089) |
Beta Was this translation helpful? Give feedback.
The hard way would be to extend existing plugins (#4138), or fork them to enhance them the way you want.
Alternatively, you can create a plugin that gets access to all the plugins
contentLoaded
data (containing all plugins tags) and implement your own tags merge logic and create a custom tags page from the merged data. See also #10574 (comment)