The only thing I don't like about wasteof3 is how 404s are used in place of other errors

comments

they’re only used in places where i rather not have bots and scrapers looking for stuff. (aka admin only pages). this is commonly done to try keeping things slightly more secure through obscurity.

hmmm also how do you dynamically send a 404 in Sveltekit because I tried and it doesn’t work for me

can you set other status codes?

Yeah like 302 (that's what I've used instead, just a redirect to the homepage). But 404 doesn't work

oh I figured it out (I used a param matcher)