CodeCommitsIssuesPull requestsActionsInsightsSecurity
a3fbfca28dea9de15c84a21682326145c99db476

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

app/index.js

13lines · modecode

1import "./index.styl"
2
3import Application from "components/application"
4
5document.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})