Our Personal Data Server from scratch!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at nix-fixes 9 lines 186 B view raw
1import "./styles/base.css"; 2import App from "./App.svelte"; 3import { mount } from "svelte"; 4 5const app = mount(App, { 6 target: document.getElementById("app")!, 7}); 8 9export default app;