danwithabox
danwithabox
This would be very much appreciated from the point of view of a new Nuxt adopter 🎉 As I'm evaluating the framework, coming across such situations where the "best" solution...
I second that question. For people ending up here thinking they'd have to use this module to get typed routes, I have successfully started using the [`experimental.typedPages`](https://nuxt.com/docs/guide/going-further/experimental-features#typedpages) option with i18n....
Great input, thank you, wouldn't have guessed that `@typescript-eslint/parser` prefixes node types with `TS`! Interestingly, swapping `PropertySignature` to `TSPropertySignature` did **not** fix it for me. Out of curiosity, I added...
AFAIK I cannot override `unicodeRange` in the CSS code that the library generates with my own CSS definitions elsewhere. Would I have to acquire the font myself and "go around"...
I tried to double-check the documentation for any snippets or info I might've missed on this, but at the time of writing the documentation is broken.
Minimal example: https://github.com/danwithabox/issue_nuxt-modules-i18n_2853 After clone, `npm start`, out-of-the-box it will run without the `definePageMeta` workaround. Should see 3 things: - ways to choose locale: first two ways change the URL,...
Indeed, I knew I forgot something! Should be good now, cheers 🫠
I will risk it and ping @BobbieGoede, I don't think this issue should be closed before input from you, maybe I should've pinged when I made my repo public 🤷♂️...
Cheers for the fast response, I will look into the suggestion. I've mostly followed this documentation: https://github.com/scalar/scalar/tree/main/packages/fastify-api-reference It does say > Actually, we’re picking it up automatically, so this would...
I exposed the docs, and it does work, but whereas the swagger-ui config was a one-liner: ```ts const routePrefix = `/reference`; await fastify.register(fastifySwaggerUi, { routePrefix, }); ``` such elegance is...