Skip to content

Instantly share code, notes, and snippets.

@kwarkjes
Created July 17, 2023 10:16
Show Gist options
  • Save kwarkjes/b2f7f15803f5cb2d8d0ce2f14af605a8 to your computer and use it in GitHub Desktop.
Save kwarkjes/b2f7f15803f5cb2d8d0ce2f14af605a8 to your computer and use it in GitHub Desktop.
Proxy Nuxt 3 traffic with server routes (Uses Nitro)
// server/routes/proxy.js
export default defineEventHandler((event) => {
return proxyRequest(event,`https://www.google.com/search?q=${event.node.req.url}`)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment