-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.js
More file actions
executable file
·25 lines (24 loc) · 791 Bytes
/
schema.js
File metadata and controls
executable file
·25 lines (24 loc) · 791 Bytes
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
import blockContent from "./sanity/schemas/blockContent";
import product from "./sanity/schemas/product-schema";
import category from "./sanity/schemas/category-schema";
import starProduct from "./sanity/schemas/starProduct-schema";
import plus from "./sanity/schemas/plus-schema";
import user from "./sanity/schemas/user-schema";
import account from "./sanity/schemas/account-schema";
import verificationToken from "./sanity/schemas/verificationToken-schema";
import plusProduct from "./sanity/schemas/plusProduct-schema";
import star from "./sanity/schemas/star-schema";
import order from "./sanity/schemas/order-schema";
export const schemaTypes = [
blockContent,
product,
category,
star,
starProduct,
plus,
plusProduct,
user,
account,
order,
verificationToken,
];