honey/js/main.js
2023-10-14 01:43:36 +02:00

12 lines
269 B
JavaScript

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()
})