Mick Lawitzke

Results 167 issues of Mick Lawitzke

### Clear and concise description of the problem * The common number format in the EU, at least for the countries I know, is `1.000,00 €` * I have a...

Status: Proposal

### Clear and concise description of the problem At the moment number formats need to be defined for every locale, but this results in duplicate code: ```ts numberFormats: { de:...

Status: Proposal

This package is clearly named "-node" but I wonder if it uses Node specific imports or if it runs in other runtimes, too. E.g.: - Bun - Deno - Serverless...

enhancement

Consider removing Axios in favor native `fetch`. Personally I would recommend to use [unjs/ofetch](https://github.com/unjs/ofetch) which works in all environments (node, browser, worker). Motivation: - Bundle size: In serverless environments, and...

When following the [docs](https://algolia.nuxtjs.org/advanced/typescript/), the auto completion for the index name works, but result.value.hits is not typed: ```ts import '@nuxtjs/algolia' declare module '@nuxtjs/algolia' { interface AlgoliaIndices { someIndex: { foo:...

bug

Currently the env vars are defined as: ```env ALGOLIA_API_KEY="" ALGOLIA_APPLICATION_ID="" ``` - This is in contrast to all other variables that start with `NUXT_` or `NUXT_PUBLIC_`, e.g. `NUXT_SITE_ENV` from [nuxtjs/seo](https://nuxtseo.com)...

enhancement

It seems like `useAlgoliaRecommend()` is not working on SSR: ```vue const { result, get } = useAlgoliaRecommend(); await get({ ... }); {{ result }} ``` I get the error: ```...

enhancement