Files
Eurovision-25-frontend/server/api/participants.get.ts
T

9 lines
229 B
TypeScript

export default defineEventHandler(async (event) => {
const config = useRuntimeConfig(event)
const apiBase = config.public.apiBase
const response = await $fetch(`${apiBase}/songs`)
return response
})