10 lines
297 B
TypeScript
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')
|
|
}
|
|
})
|