Pooya Parsa
Pooya Parsa
Once last thing, it is missing in https://github.com/unjs/defu/blob/main/lib/defu.cjs
We have fixed this regression for nitro proxy using [this method](https://github.com/pi0/nitro-cloudflare-dev/pull/35).
The first step would be backporting IPX v2 for image v0 so PR welcome. (Ref: https://github.com/nuxt/image/pull/988 and https://github.com/nuxt/image/pull/1056)
This is a nice idea. I have something more generic in mind inspired from this that might cover it but a draft PR is welcome in the meantime if you...
We could support some utils from `/jwt` subpath 👍🏼
@Geminii It is next step indeed for nuxt/config+nuxt/kit making us able to automate docs (and initial config) generation. Stay tuned 😉 @lindsaykwardell No problems. Feel free pinging for any help...
Actually doing above advices it would be pretty near for nuxt3 compatibility. (except you might also want to expose composition API hooks) There are two projects planned specially for cross...
Hi @lindsaykwardell ✋ Actually you have to use `$config` inside [plugin](https://github.com/lindsaykwardell/nuxt-github-api/blob/development/lib/plugin.js#L32) (it doesn't involves module anymore after build). See [this example](https://github.com/nuxt-community/gooogle-analytics-module/blob/master/lib/plugin.js#L5) > I saw you suggested using publicRuntimeConfig, but I...
Thanks, @dlundquist for this nice project and guide regarding SOCKS implementation. I'm probably going to implement it if my POC works. Currently, a workaround exists to use [proxychains](https://github.com/haad/proxychains) when starting...
@TangMonk I think it is impossible as Node fs IO is async by default. Possible solutions : - Use Promises and continue in callbacks/then - Use ES7 Async/Await so you...