aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
blob: b26e960a0a39763fa78638222a690de127bd44f9 (plain)
1
2
3
4
5
import { env } from './config';

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