intlify / nuxt3

Nuxt 3 Module for vue-i18n-next
MIT License
202 stars 19 forks source link

Package fails on last version of Nuxt3 #24

Open jbmolle opened 2 years ago

jbmolle commented 2 years ago

Hi @kazupon The package fails on last version of Nuxt3. Actually Nuxt updated the package std-env to version 3.0.0 a few days back and since then your package throws the following error: import { provider, isWindows } from 'std-env'; ^^^^^^^^^ SyntaxError: Named export 'isWindows' not found

You actually need to update the version of nuxt-kit in nuxt3 package package.json Either "@nuxt/kit": "latest", Or "@nuxt/kit": "npm:@nuxt/kit-edge@latest"

Thanks JB