Fabian Scherer

Results 49 comments of Fabian Scherer

You can look at my pull request #222 and try to modify it for your needs. You can also comment there and I try to include this option.

Workaround: don't use immediate but call the watcher function in async fetch. But this gives the warning "WARN Cannot stringify a function update" because of the `async fetch()` (I acutally...

As easy as just changing this line https://github.com/nuxt-community/pwa-module/blob/79322c18a28456a02ef0c3c596dff6cd88389f59/src/manifest.ts#L38

> `{{ index > 0 ", " : "" }}{{obj.text}}` > > {{ index > 0 ", " : "" }} This sentence is missing a question mark, it should...

I think you can always use locally imported icons instead of gloable. Use locally imported icons ```html import { fas } from '@fortawesome/free-solid-svg-icons' import { faGithub } from '@fortawesome/free-brands-svg-icons' export...

how can I use the loading bar if using your approach?

Could I maybe write a entry type whos only purpose is to display text it extracts from a defined invisible html object in the preview? So, can custom entry type...

When setting `lambdaName: 'notindex'` in nuxt.config it works but then the server fallback for not-generated pages does not work and I just get a 404 from vercel. Assosited code: https://github.com/nuxt/vercel-builder/blob/90cf41da3afb0c438f89f997303612cd3fbfa041/src/build.ts#L160...

> They changed the way relations are resolved: https://www.storyblok.com/docs/api/content-delivery/v2#core-resources/stories/stories > > It now returns a rels array, which is not an improvement, because that thing has to be passed down...

> You can update the icon by setting the value in the `options` prop instead. > > ```js > key={marker.id} > position={{ lat: marker.lat, lng: marker.lng }} > options={{ >...