CodeCommitsIssuesPull requestsActionsInsightsSecurity
dev

Branches

Tags

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

Clone

HTTPS

Download ZIP

app/index.js

14lines · modecode

1import "./index.styl"
2
3import Application from "components/application"
4import elementDatasetPolyfill from "element-dataset"
5
6document.addEventListener("DOMContentLoaded", () => {
7 elementDatasetPolyfill()
8
9 const application = new Application(document.getElementById("app"))
10
11 if (process.env.NODE_ENV !== "production") {
12 window.application = application
13 }
14})