import {easypage, html, startup_scripts_with_dev_mode, template} from "@benev/turtle" export default template(async basics => { const path = basics.path(import.meta.url) return easypage({ path: basics.path(import.meta.url), title: "@benev/slate", dark: true, head: html` ${startup_scripts_with_dev_mode({ path, scripts: [{ module: "demo.bundle.js", bundle: "demo.bundle.min.js", hash: true, }], })} `, body: html`
`, }) })