/** * 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') } })