The module now requires Nuxt 4 and will no longer work with Nuxt 3 projects. Nuxt 3 users should stay on v0.6.x. If you're upgrading to Nuxt 4, update the module and review the changes below — some project structure adjustments are needed.
- Nuxt 4 required — Nuxt 3 support ends at v0.6.2. Install
nuxt@4before updating this module. - Move your UI components — Under Nuxt 4, the default
componentDirresolves toapp/components/ui/instead ofcomponents/ui/. Move your components intoapp/components/ui/, or setcomponentDirexplicitly in yournuxt.config.tsto keep the old path. useAsyncDatadeduplication behaviour changed — Nuxt 4 now defers duplicate requests by default instead of cancelling them. Existing usages ofuseFronticPage,useFronticSearch,useFronticListing, and related composables may behave slightly differently when the same query runs concurrently.