fantus/pages/env.tsx
cupcakearmy c6e14d3d97 env
2020-01-15 18:22:51 +01:00

10 lines
170 B
TypeScript

import React from 'react'
import getConfig from 'next/config'
const config = getConfig()
const Env = () => <div>
{JSON.stringify(config)}
</div>
export default Env