Experiment to rebuild Diffuse using web applets.
0
fork

Configure Feed

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

chore: deploy to netlify

+5
+1
.gitignore
··· 1 1 .astro 2 2 .dprc 3 + .netlify 3 4 dist 4 5 node_modules 5 6 public/applets/
+1
deno.json
··· 10 10 "dependencies": ["astro:build"] 11 11 }, 12 12 "copy-types": "deno run --allow-read --allow-write tasks/copy-types.ts", 13 + "deploy:netlify": "npx netlify deploy --prod", 13 14 "dev": "astro dev" 14 15 } 15 16 }
+3
netlify.toml
··· 1 + [build] 2 + command = "deno run build" 3 + publish = "dist"