/******************************************************************************* * The following two lines enable async/await without using babel's * "runtime" transformer. Uncomment the lines if you intend to use async/await. * * More info here: https://github.com/jdanyow/aurelia-plunker/issues/2 */ //import regeneratorRuntime from 'babel-runtime/regenerator'; //window.regeneratorRuntime = regeneratorRuntime; /******************************************************************************/ import 'materialize'; export function configure(aurelia) { aurelia.use .standardConfiguration() .developmentLogging() .plugin('aurelia-materialize-bridge', bridge => bridge.useAll() ); aurelia.start().then(a => a.setRoot()); }