Our Personal Data Server from scratch! tranquil.farm
pds rust database fun oauth atproto
221
fork

Configure Feed

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

at main 12 lines 281 B view raw
1import "./styles/base.css"; 2import "./styles/pages.css"; 3import "./styles/dashboard.css"; 4import "./styles/migration.css"; 5import App from "./App.svelte"; 6import { mount } from "svelte"; 7 8const app = mount(App, { 9 target: document.getElementById("app")!, 10}); 11 12export default app;