honey/js/main.js

12 lines
269 B
JavaScript
Raw Normal View History

2023-10-14 01:43:36 +02:00
import App from "./App"
window.addEventListener("DOMContentLoaded", () => {
let xhr = new XMLHttpRequest()
xhr.open("GET", "config/config.json")
xhr.onload = function() {
let config = JSON.parse(this.responseText)
window.app = new App(config)
}
xhr.send()
})