A framework-agnostic, universal document renderer with optional chunked loading polyrender.wisp.place/
6
fork

Configure Feed

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

add gitignore

aria a8ff9758

+39
+39
.gitignore
··· 1 + # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 + 3 + # dependencies 4 + /node_modules 5 + **/node_modules 6 + /.pnp 7 + .pnp.js 8 + 9 + # testing 10 + /coverage 11 + 12 + # next.js 13 + /.next/ 14 + /out/ 15 + 16 + # production 17 + /build 18 + **/dist 19 + 20 + # misc 21 + .DS_Store 22 + *.pem 23 + 24 + # debug 25 + npm-debug.log* 26 + yarn-debug.log* 27 + yarn-error.log* 28 + 29 + # local env files 30 + .env*.local 31 + .env 32 + 33 + # vercel 34 + .vercel 35 + *.vercel 36 + 37 + # typescript 38 + *.tsbuildinfo 39 + next-env.d.ts