fantus/pages/api/env.tsx

15 lines
344 B
TypeScript
Raw Normal View History

2020-01-15 18:12:04 +01:00
import { NextApiRequest, NextApiResponse } from 'next'
import getConfig from 'next/config'
const config = getConfig().serverRuntimeConfig
export default async (req: NextApiRequest, res: NextApiResponse) => {
try {
res.send(JSON.stringify(config))
res.status(200).end()
} catch {
res.status(400).end()
}
}