Skip to content

Commit

Permalink
chore(playground): fix configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
batopa committed Aug 13, 2024
1 parent 3a3cbb6 commit 2b602ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions playground/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ export default defineNuxtConfig({
},
proxyEndpoints: [
{
path: '/documents',
methods: ['*'],
path: '*',
methods: ['GET'],
},
{
path: '/files',
methods: ['GET'],
path: '/documents',
methods: ['*'],
},
{
path: '/files/upload',
Expand Down

0 comments on commit 2b602ed

Please sign in to comment.