Daniel Roe

Results 2592 comments of Daniel Roe

@P4sca1 have you tried configuring focus using `.yarnrc`? Yarn should pick up that preference when installing dependencies for your Nuxt runtime.

@P4sca1 presumably that's true on your local machine as well?

@P4sca1 It may be that yarn v2 (when we support it on vercel-builder) solves the focus issue for us.

@P4sca1 * Nuxt 2 does support yarn 2 using nodeModules linker. * There is a way to exclude folders in vercel - see `.vercelignore`

Would you provide a reproduction? 🙏 I think it's likely this is to do wtih your dependencies rather than this builder.

@nicolashmln This is not a bug; just make sure you don't set the metadata *within* `useFetch`. However, I agree it could be nice if that worked as you have it...

@nicolashmln Sorry, it won't work exactly as written because on the server side the fetch hasn't yet happened. Try using the computed form of useMeta.

@lukas-a-brand Do you need to do that per-request or only on the initial build?

@lukas-a-brand I'd certainly recommend a `buildModule` that fetches your configuration and then injects all the other build modules with the correct configuration, as well as modifying any other nuxt options....

@FloryanFilip I can't reproduce the error with your code. Note that `useFetch` is quite tightly coupled with Nuxt and it needs a number of global properties to be present on...