mirror of
https://github.com/kevin-DL/sapper-template.git
synced 2026-01-12 02:15:17 +00:00
9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
import { init } from 'sapper/runtime.js';
|
|
import { routes } from './manifest/client.js';
|
|
import App from './App.html';
|
|
|
|
init({
|
|
target: document.querySelector('#sapper'),
|
|
routes,
|
|
App
|
|
}); |