mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 11:15:14 +00:00
9 lines
268 B
JavaScript
9 lines
268 B
JavaScript
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); |