import { env } from './config'; Object.keys(env).forEach(key => { document.getElementById('app').innerHTML += `
${key}: ${env[key]}
`; });