9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
import { defineEventHandler } from 'h3'
|
|
|
|
export default defineEventHandler(async () => {
|
|
const config = useRuntimeConfig();
|
|
|
|
const resp = await fetch(`${config.public.solarNetworkApi}/cgi/id/well-known/jwks`)
|
|
|
|
return await resp.json()
|
|
}) |