Michael Brevard

Results 109 comments of Michael Brevard
trafficstars

These are the domains that I managed to gather from it: mailboxx.site mailboxx.space webp.website glampets.shop mailext.xyz glampets.store mailpro.rest

Can't seem to reproduce it with 3.12.2: ![image](https://github.com/nuxt/nuxt/assets/92037085/013968f5-4704-4ab2-a22a-1601526c2ebb) ![image](https://github.com/nuxt/nuxt/assets/92037085/906c67dc-61d4-4cc0-acb9-786610cd0f7c) https://stackblitz.com/edit/github-mz7brn-gkhhkt?file=pages%2Findex.vue,middleware%2Fdefault.global.ts

`useFetch` is generally used for for async data before the page renders, so it's meant to be in the top level of the sfc setup. Depending on what kind of...

That's because this is not an appropriate use case for useFetch. If you need to retrieve multiple sources, you can use `useAsyncData` and make 2 $fetch calls inside, that would...

You can indeed use the error hook, as that's also what nitro recommends in their docs for error capturing https://nitro.unjs.io/guide/plugins#capturing-errors

This issue is indeed the downside of having regex based parsing, but I wouldn't necessarily say it's an issue of the module. Having regex based parsing ensures valid scripts are...

> happen with user generated content I get that, but ideally this situation should never happen. It's the same concept as using v-html, which directly bypasses all security restrictions. It's...

Hey! I sincerely apologize for the amount of time it took me to come up with a solution to this. Right about the time I made the previous iteration, I've...

It would probably be worth it to keep the Nuxt config for Nuxt apps and the non-Nuxt config for non-Nuxt apps. It could probably be done with a few wrapper...

@SmootherSpike There is a PR in progress for this. It will likely arrive with Nuxt 4.