nkoik / vue-animated-number

:1234: This is a Vue number plugin. It animates the number that you pass in prop.
MIT License
78 stars 15 forks source link

Nuxt 3 build problem #20

Closed Ischafak closed 11 months ago

Ischafak commented 2 years ago

Hi, I am using nuxt 3 (3.0.0-rc.11) when i try to run a webpage (yarn dev) with this component there is no error but when i try to build. It gives me error

My plugin file is this

import VueNumber from 'vue-number-animation';

export default defineNuxtPlugin((nuxtApp) => {
  nuxtApp.vueApp.use(VueNumber);
});

Error is

image

How can i fix this can anyone help me?

Frallen commented 1 year ago

@Ischafak This solve the problem. build:{ transpile: ['vue-number-animation'] },