Alex

Results 16 comments of Alex

+1. It's useful when you can build url string by url name and parameters. Like in http://www.gorillatoolkit.org/pkg/mux ``` Registered URLs can be built, or "reversed", which helps maintaining references to...

I solve it like this https://github.com/alehano/reverse

Hi. I'm using chi in my web framework https://github.com/alehano/gobootstrap

I'm not sure about it. Sometimes I have active zero balanced accounts.

Or, maybe, is better solution to make a list of quick transactions on the home screen. User can add some transactions and use them. E.g. Buy food by credit card.

Same issue on production build. If I add custom ```pages/404.vue``` with content ``` My 404 page ``` ```npm cache clean --force``` doesn't help nuxt version 3.0.0-rc.3 node version v17.9.0 (same...

Ok. On my local machine I still get this error on any 404 paths. But only on production build.

Ok, thanks, I'll check out plugins option. To be clear, I ment I already have exponential timeouts on my side, but I can't use it on one specific endpoint because...

I use it with Nuxt 3.0.0-rc.4 On dev it works fine, but when I build it to production I have infinite loop of errors. Wrapping with ClientOnly tag doesn't help...

I got this to work. Under `/plugins` dir create a file named `recaptcha.client.js` with contents: ```js import { VueRecaptcha } from 'vue-recaptcha'; export default defineNuxtPlugin(nuxtApp => { nuxtApp.vueApp.component('VueRecaptcha', VueRecaptcha) })...