From 30d06047153810402ab91c5019c0e7b72a43b5fe Mon Sep 17 00:00:00 2001 From: keven1024 Date: Sat, 12 Apr 2025 16:28:46 +0800 Subject: [PATCH] feat(front): add motion-v and nuxt-lucide-icons modules to Nuxt configuration --- front/nuxt.config.ts | 10 ++++++++-- front/package.json | 1 + 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/front/nuxt.config.ts b/front/nuxt.config.ts index b454807..8f13b1c 100644 --- a/front/nuxt.config.ts +++ b/front/nuxt.config.ts @@ -85,6 +85,12 @@ export default defineNuxtConfig({ }, }, devtools: { enabled: true }, - modules: ['@nuxtjs/tailwindcss', '@vueuse/nuxt', '@serwist/nuxt'], + modules: [ + '@nuxtjs/tailwindcss', + '@vueuse/nuxt', + '@serwist/nuxt', + 'motion-v/nuxt', + "nuxt-lucide-icons", + ], serwist: {}, -}) +}) \ No newline at end of file diff --git a/front/package.json b/front/package.json index 6056d08..076d374 100644 --- a/front/package.json +++ b/front/package.json @@ -14,6 +14,7 @@ "lucide-vue-next": "^0.487.0", "motion-v": "1.0.0-beta.2", "nuxt": "^3.16.0", + "nuxt-lucide-icons": "1.0.5", "vue": "latest", "vue-router": "latest" },