cloudflare/InstantPlugin
Publicmirrored fromhttps://github.com/cloudflare/InstantPlugin
app/index.js
13lines · modecode
9 years ago
| 1 | import "./index.styl" |
| 2 | |
| 3 | import Application from "components/application" |
| 4 | |
| 5 | document.addEventListener("DOMContentLoaded", () => { |
| 6 | console.log("hello world") |
| 7 | |
| 8 | const application = new Application(document.getElementById("app")) |
| 9 | |
| 10 | if (process.env.NODE_ENV !== "production") { |
| 11 | window.application = application |
| 12 | } |
| 13 | }) |