mirror of
https://github.com/khairul169/honey.git
synced 2025-04-28 23:09:32 +07:00
12 lines
269 B
JavaScript
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()
|
|
})
|