Skip to content

Instantly share code, notes, and snippets.

@altphi
altphi / index.html
Last active May 4, 2018 20:18 — forked from dreyescat/index.html
Webpack config to expose bundle in a variable in the global context
<html>
<head>
</head>
<body>
<script src="lib/yourlib.js"></script>
<script>
window.onload = function () {
EntryPoint.run();
};
</script>