Files
clean-cuts/middleware/background.global.ts
2024-10-10 15:08:25 -05:00

7 lines
221 B
TypeScript

export default defineNuxtRouteMiddleware((to, from) => {
useHead({
htmlAttrs: {
style: to.fullPath == "/" ? "background: url('/clean-cuts/img/background.jpg');" : "background: rgb(21, 11, 48)"
},
});
});