From 2b602ed4ce516aa7d4544a290bec8991c3306dcf Mon Sep 17 00:00:00 2001 From: Alberto Pagliarini Date: Tue, 13 Aug 2024 18:05:22 +0200 Subject: [PATCH] chore(playground): fix configuration --- playground/nuxt.config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/playground/nuxt.config.ts b/playground/nuxt.config.ts index 2ded3d4..b5a93c5 100644 --- a/playground/nuxt.config.ts +++ b/playground/nuxt.config.ts @@ -24,12 +24,12 @@ export default defineNuxtConfig({ }, proxyEndpoints: [ { - path: '/documents', - methods: ['*'], + path: '*', + methods: ['GET'], }, { - path: '/files', - methods: ['GET'], + path: '/documents', + methods: ['*'], }, { path: '/files/upload',