import { Aurelia } from "aurelia-framework"; import { PLATFORM } from "aurelia-pal"; export async function configure(au: Aurelia): Promise { au.use.standardConfiguration(); au.use.feature(PLATFORM.moduleName("resources/index")); await au.start(); const host = document.querySelector("[aurelia-app]"); await au.setRoot(PLATFORM.moduleName("app"), host); }