Simple http proxy for Vercel.
fetch("https://project-name.vercel.app/https://example.com?param1=value1¶m2=value2")
.then((res) => res.text())
.then(console.log.bind(console))
.catch(console.error.bind(console));curl -L https://project-name.vercel.app/https:/example.com?param1=value1¶m2=value2Just add https://project-name.vercel.app/ before the url you want to proxy.
vercel-proxy is released under the MIT license. See LICENSE for details.