From c4e6afc5d328edf8712de240aa0279be95bb57d7 Mon Sep 17 00:00:00 2001 From: krekosiewicz Date: Thu, 22 Aug 2024 16:37:20 +0200 Subject: [PATCH] fix: replace deprecated dedupe with resolve.dedupe --- vite.config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index be9e334..707f237 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -87,7 +87,9 @@ const LayouitPlugin = (): Plugin => { } export default defineConfig({ - dedupe: ['vue'], + resolve: { + dedupe: ['vue'] + }, plugins: [ vuePlugin({ refTransform: true,