diff options
author | 2023-10-30 14:10:12 +0000 | |
---|---|---|
committer | 2023-10-30 14:10:12 +0000 | |
commit | 4c261c9c2fbfe2190d753a5b6fe5e2d1e9aee63e (patch) | |
tree | 44d7cc74e563b557f9ce7ef9ec3bccae6542c1e7 /examples/component | |
parent | e5d53cfa9cc09f8445d41bb76c218cef93a3837f (diff) | |
download | astro-4c261c9c2fbfe2190d753a5b6fe5e2d1e9aee63e.tar.gz astro-4c261c9c2fbfe2190d753a5b6fe5e2d1e9aee63e.tar.zst astro-4c261c9c2fbfe2190d753a5b6fe5e2d1e9aee63e.zip |
Add .gitignore to component example (#8949)
Diffstat (limited to 'examples/component')
-rw-r--r-- | examples/component/.gitignore | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/component/.gitignore b/examples/component/.gitignore new file mode 100644 index 000000000..6240da8b1 --- /dev/null +++ b/examples/component/.gitignore @@ -0,0 +1,21 @@ +# build output +dist/ +# generated types +.astro/ + +# dependencies +node_modules/ + +# logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + + +# environment variables +.env +.env.production + +# macOS-specific files +.DS_Store |