forked from processing/p5.js-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ts
31 lines (30 loc) · 1.23 KB
/
config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { tutorialsCollection } from "./tutorials/config";
import { eventsCollection } from "./events/config";
import { librariesCollection } from "./libraries/config";
import { peopleCollection } from "./people/config";
import { referenceCollection } from "./reference/config";
import { textDetailCollection } from "./text-detail/config";
import { examplesCollection } from "./examples/config";
import { contributorDocsCollection } from "./contributor-docs/config";
import { homepageCollection } from "./homepage/config";
import { pagesCollection } from "./pages/config";
import { bannerCollection } from "./banner/config";
/**
* All content collections defined in subfolders of /src/content/
* must be imported into this file and exported in the object below.
* Astro uses this object to know which content collections exist to
* build into the site.
*/
export const collections = {
tutorials: tutorialsCollection,
events: eventsCollection,
libraries: librariesCollection,
people: peopleCollection,
reference: referenceCollection,
"text-detail": textDetailCollection,
examples: examplesCollection,
"contributor-docs": contributorDocsCollection,
homepage: homepageCollection,
pages: pagesCollection,
banner: bannerCollection,
};