Sumit Kumar

Results 60 comments of Sumit Kumar

Here's another JS fiddle for this issue: http://jsfiddle.net/LnzN2/190/

I also have the need to make a truly centered navbar (without left and right). But it's pretty hard with flexbox as flex-grow distributes the remaining space to the already...

@wattanx thanks! ``` import { useNuxtApp } from ‘#imports' ``` That seems to fix it so the web app starts. However, tests have a problem with this: Anything special I...

@wattanx we are using jest and @vue/test-utils. There is no `tsconfig.json` in `.nuxt`unfortunately. I replaced all imports of `import { useNuxtApp } from '#imports';` with `import { useNuxtApp } from...

@wattanx I also tried it with ``` import { useNuxtApp } from '@nuxt/bridge/dist/runtime/index.mjs'; ``` Now the error is this: > FAIL helper/index.test.js > ● Test suite failed to run >...

@wattanx adding the alias via moduleNameMapper helped! Unfortunately jest can't deal with ESM - I'm trying to figure this out using babel but no luck yet. This is the jest...

A quick fix so a reload doesn't break the site is to hide the search. ```vue ```

> Ha @codeofsumit, didn’t know you guys are using Scalar! Thanks for the report, and the workaround. 🫶 We used it internally for a while and are now starting to...

@hanspagel I see the label `@scalar/nuxt` - just a clarification that we are using `@scalar/vue` in a nuxt 3 project.

@amritk good point. I can go client-only for now, however, I wanted to do SSR to have the API refs content ready for SEO as well.