Is your feature request related to a problem? Please describe.
In order to use Facebook Comments Plugin, I need to place <div id="fb-root"></div>
right after opening body tag.
But it always ends up between __nuxt
and __layout
tag.
Describe the solution you’d like
<html>
<body>
<div id="fb-root"></div>
<div id="__nuxt">
<div id="__layout">
.......
</div>
</div>
</body>
</html>
Describe alternatives you’ve considered
Tried to put in default.vue
of layouts
at every position possible.
Additional context
My Website:
https://rexarvind.web.app/
Facebook Comments Plugin:
https://developers.facebook.com/docs/plugins/comments/
@rexarvind You’ll probably be able to do what you want with a custom
app.html
.