Skip to content

Commit

Permalink
Added more to the features list
Browse files Browse the repository at this point in the history
  • Loading branch information
onrirr committed Jan 25, 2024
1 parent ec1411c commit 9407ccc
Show file tree
Hide file tree
Showing 4 changed files with 5,174 additions and 92 deletions.
4 changes: 2 additions & 2 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,11 @@ declare module 'astro:content' {
? {
collection: C;
slug: ValidContentEntrySlug<C>;
}
}
: {
collection: C;
id: keyof DataEntryMap[C];
}
}
>;
// Allow generic `string` to avoid excessive type errors in the config
// if `dev` is not running to update as you edit.
Expand Down
10 changes: 7 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
"**/Thumbs.db": true,
".vscode": true,
".github": true,
".astro": true,
"node_modules": true
},
"hide-files.files": []
}
"hide-files.files": [".vscode", ".github", ".astro", "node_modules"]
}
Loading

0 comments on commit 9407ccc

Please sign in to comment.