My nuxt application always has a div with the id __nuxt inside <body>.
Is it possible to remove this div? Why is it needed?
Reason: For me it was important to add this css to get my divs to 100% height:
#__nuxt {
height: 100%
}This wouldn't be needed if the __nuxt div does not exist.