Florian

Results 46 comments of Florian

Ah, my bad. You're right - this way should be fine. Should be a bug. Workaround is - like you do - to import it directly. I will have a...

I think I got it... It's a bit weird, because typescript can extract type signature only. Enums are object structures, they must be imported (include). If you try to export...

`data-v` is missing on first `ssr` rendering. If I grab it from `layouts` parent (in `nuxt-layout.ts`) it works as well. ### Changes: `/nuxt/packages/nuxt/src/app/components/nuxt-layout.ts` ```typescript // Line 74-75 const instance =...

It is a `Vue` issue, or better a limitation. - https://github.com/vuejs/core/issues/3981 - https://github.com/vuejs/vue-loader/issues/820 The first issue is closed, but only with a workaround. I think my fix should be right...

@danielroe I think it's maybe a upstream issue (Rollup).. The generated path of this layer have a lot of `../` ```bash $ grep "relativeLib" playground/.nuxt/dev/index.mjs import { test as test$2...

Can you create a little reproduction? And which package manager are you using? I have a suspicion, which I would like to confirm.

If possible please share a reproduction. I created a new project from scratch with yarn und `Nuxt` 3, and it works without any warning or errors...

It could be a `Vite` issue: https://github.com/vitejs/vite/issues/14850#issuecomment-1791333518 This would fix it (`manifest.ts`) ```typescript function fetchManifest () { if (!isAppManifestEnabled) { throw new Error('[nuxt] app manifest should be enabled with `experimental.appManifest`')...