If you want to set the id of your body globally, your nuxt.config.ts
should look something like this.
export default defineNuxtConfig({
app: {
head: {
bodyAttrs: {
id: 'your-body-id', // Replace with your desired ID
}
}
}
})