nuxt-proxy icon indicating copy to clipboard operation
nuxt-proxy copied to clipboard

Http-proxy middleware for Nuxt 3.

Results 14 nuxt-proxy issues
Sort by recently updated
recently updated
newest added

``` //nuxt.config.ts modules: [ '@vueuse/nuxt', '@pinia/nuxt', '@nuxtjs/color-mode', 'nuxt-proxy', ], proxy: { options: { target: 'https://localhost:8100', changeOrigin: true, pathRewrite: { '^/api/': '/', }, pathFilter: [ '/api/', ], }, }, ``` ```...

I am using Google Cloud run when deploying my site. The plugin works 100 in development but getting the following build error. TypeError: debug_1.Debug.extend is not a function at Object....

Could you please add websocket support?

const debug$6 = debug_1$6.Debug.extend('debug-proxy-errors-plugin'); on windows 11

My code is like // proxy: { // options: { // target: 'http://example.com:8000', // changeOrigin: true, // pathRewrite: { // '/auth': '/auth', // '/site-test': '/site-test', // '/site-prod': '/site-prod', // },...

Greetings, I am intending to utilize this module for conditional proxy purposes. In order to branch according to the expected `accept:` header in the request, I wrote a function in...

hi there, i'm using nuxt-proxy and it works well on client-side, my mean is if you call a request on browser(for example submiting a form or clicking on a RouterLink)...

throws 404 on vercel deployment. Locally everything works fine.

Hi! 👋 I'm getting a TypeScript error when importing `{ createProxyMiddleware }` from `'nuxt-proxy/middleware'`: ``` $ npx nuxi@latest init nuxt-proxy-import $ cd nuxt-proxy-import $ npm install $ npm install nuxt-proxy...