mirror of
https://github.com/BlossomiShymae/clean-cuts.git
synced 2025-12-06 10:10:47 +01:00
7 lines
221 B
TypeScript
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)"
|
|
},
|
|
});
|
|
}); |