18 lines
372 B
JavaScript
18 lines
372 B
JavaScript
$SCRIPTS$
|
|
|
|
System.config({
|
|
baseURL: '/',
|
|
defaultJSExtensions: true
|
|
});
|
|
|
|
System.import("playground/src/web_workers/router/background_index")
|
|
.then(
|
|
function(m) {
|
|
try {
|
|
m.main();
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
},
|
|
function(error) { console.error("error loading background", error); });
|