fix export queue

This commit is contained in:
mrkishi
2019-05-17 12:30:21 -03:00
parent ce50c2ff98
commit 9dd63ab760
12 changed files with 239 additions and 17 deletions

View File

@@ -0,0 +1,9 @@
import * as sapper from '@sapper/app';
window.start = () => sapper.start({
target: document.querySelector('#sapper')
});
window.prefetchRoutes = () => sapper.prefetchRoutes();
window.prefetch = href => sapper.prefetch(href);
window.goto = href => sapper.goto(href);