diff --git a/nuxt-frontend/components/home-new/HomeIndex.vue b/nuxt-frontend/components/home-new/HomeIndex.vue index f47e8359a..ef6321b12 100644 --- a/nuxt-frontend/components/home-new/HomeIndex.vue +++ b/nuxt-frontend/components/home-new/HomeIndex.vue @@ -30,8 +30,8 @@ import LandingSection from "@/components/home-new/LandingSection.vue"; import { elementInViewPort } from "@/utils.js"; import { defineAsyncComponent } from "vue"; -const CaseStudy = defineAsyncComponent( - () => import("@/components/home-new/CaseStudy.vue"), +const CaseStudy = defineAsyncComponent(() => + import("@/components/home-new/CaseStudy.vue") ); const ServiceSection = defineAsyncComponent(() => import("@/components/home-new/ServiceSection.vue") diff --git a/nuxt-frontend/nuxt.config.js b/nuxt-frontend/nuxt.config.js index 4799c2710..d7864efa2 100644 --- a/nuxt-frontend/nuxt.config.js +++ b/nuxt-frontend/nuxt.config.js @@ -24,6 +24,7 @@ export default defineNuxtConfig({ "@nuxtjs/tailwindcss", "nuxt-icon", "@canopassoftware/blog-components", + "nuxt-lazy-hydrate", ], css: ["~/assets/css/global.css", "~/assets/css/app.css"], generate: { fallback: true },