a template starter repo for sveltekit projects
0

Configure Feed

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

setting up gitignore

author
Taurean Bryant
date (Jun 3, 2026, 12:41 PM -0700) commit eb827d2e
+26
+26
.gitignore
··· 1 + node_modules 2 + 3 + # Output 4 + .output 5 + .vercel 6 + .netlify 7 + .wrangler 8 + /.svelte-kit 9 + /build 10 + 11 + # OS 12 + .DS_Store 13 + Thumbs.db 14 + 15 + # Env 16 + .env 17 + .env.* 18 + !.env.example 19 + !.env.test 20 + 21 + # Vite 22 + vite.config.js.timestamp-* 23 + vite.config.ts.timestamp-* 24 + 25 + *storybook.log 26 + storybook-static