From 46bcd214baea8c8464df843dfa4d639868f663cc Mon Sep 17 00:00:00 2001 From: Meir Roth <12494197+meirroth@users.noreply.github.com> Date: Sun, 14 Apr 2024 21:29:15 +0300 Subject: [PATCH] Import fix (#1) --- nuxt.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 8851e77..0c12852 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,4 +1,7 @@ // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ - devtools: { enabled: true } + devtools: { enabled: true }, + build: { + transpile: ["@featurevisor/sdk"], + }, })