--- to: .gitignore --- # wix integration .wix/ # build output dist/ # generated types .astro/ # dependencies node_modules/ # logs *.log <% if(packageManager.name === 'yarn' || packageManager.name === 'yarn-berry') { -%> yarn-debug.log* yarn-error.log* <% } else if (packageManager.name === 'npm') { -%> npm-debug.log* <% } -%> <% if(packageManager.name === 'yarn-berry') { -%> # Yarn Berry .pnp.* .yarn/* !.yarn/patches !.yarn/plugins !.yarn/releases !.yarn/sdks !.yarn/versions <% } -%> # environment variables .env .env.local .env.production # misc .DS_Store .idea/ out