You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running devtools:prepare script at @nuxt/ui using v3 branch there is no way to build src/devtools/.component-meta.
The problem is about using dynamic import to load the component-meta.mjs file from .nuxt folder since <unit>: is not valid ( to generate the corresponding .mjs and .cjs files in previous folder).
Running
devtools:prepare
script at@nuxt/ui
using v3 branch there is no way to buildsrc/devtools/.component-meta
.The problem is about using dynamic import to load the
component-meta.mjs
file from.nuxt
folder since<unit>:
is not valid ( to generate the corresponding .mjs and .cjs files in previous folder).The fix should be easy, using
importModule
instead dynamicimport
https://github.com/nuxtlabs/nuxt-component-meta/blob/main/src/cli/generate.ts#L100: I'm preparing a PR to fix it.The text was updated successfully, but these errors were encountered: