From edcee7cd804d2c40cf4ae07cd9629e53c4e61102 Mon Sep 17 00:00:00 2001 From: NHoarau Date: Mon, 22 Jun 2026 14:54:02 +0400 Subject: [PATCH] feat(hints): added @nuxt/hints module and fixed lazy component suggestion --- apps/web/app/pages/projects/index.vue | 2 +- apps/web/nuxt.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/app/pages/projects/index.vue b/apps/web/app/pages/projects/index.vue index 87702ba..f9a2de3 100644 --- a/apps/web/app/pages/projects/index.vue +++ b/apps/web/app/pages/projects/index.vue @@ -65,7 +65,7 @@ const columns: TableColumn[] = [ :links="[{ label: newProjectLabel, icon: 'i-lucide-plus', to: '/projects/new', color: 'primary' }]" /> - + diff --git a/apps/web/nuxt.config.ts b/apps/web/nuxt.config.ts index 0ae7124..7d0d5c1 100644 --- a/apps/web/nuxt.config.ts +++ b/apps/web/nuxt.config.ts @@ -1,6 +1,6 @@ // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ - modules: ["@nuxt/eslint", "@nuxt/ui", "@nuxtjs/i18n", "@nuxt/a11y"], + modules: ["@nuxt/eslint", "@nuxt/ui", "@nuxtjs/i18n", "@nuxt/a11y", "@nuxt/hints"], devtools: { enabled: true,