Files
nuxtfiber/app/plugins/body-class.client.ts
Beyhan Oğur 7b2b27a42c first commit
2026-04-26 22:18:17 +03:00

10 lines
297 B
TypeScript

/**
* Canvas theme requires body.stretched for full-width layout.
* Ensures body has the class on client (useHead bodyAttrs may not apply in all cases).
*/
export default defineNuxtPlugin(() => {
if (import.meta.client && document?.body) {
document.body.classList.add('stretched')
}
})