-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathloaders.gen.ts
More file actions
40 lines (39 loc) · 1.84 KB
/
Copy pathloaders.gen.ts
File metadata and controls
40 lines (39 loc) · 1.84 KB
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
32
33
34
35
36
37
38
39
40
// Auto-generated by @decocms/start/scripts/generate-loaders.ts
// Do not edit manually. Run `npm run generate:loaders` to update.
//
// Pass-through loader/action entries for COMMERCE_LOADERS.
// Custom-wired entries should be excluded via --exclude and added manually in setup.ts.
export const siteLoaders: Record<string, (props: any, request?: Request) => Promise<any>> = {
"site/actions/shipping/simulate": async (props: any, request?: Request) => {
const mod = await import("../../actions/shipping/simulate");
return (mod.default as any)(props, request);
},
"site/actions/shipping/simulate.ts": async (props: any, request?: Request) => {
const mod = await import("../../actions/shipping/simulate");
return (mod.default as any)(props, request);
},
"site/actions/wishlist/submit": async (props: any, request?: Request) => {
const mod = await import("../../actions/wishlist/submit");
return (mod.default as any)(props, request);
},
"site/actions/wishlist/submit.ts": async (props: any, request?: Request) => {
const mod = await import("../../actions/wishlist/submit");
return (mod.default as any)(props, request);
},
"site/loaders/user": async (props: any, request?: Request) => {
const mod = await import("../../loaders/user");
return (mod.default as any)(props, request);
},
"site/loaders/user.ts": async (props: any, request?: Request) => {
const mod = await import("../../loaders/user");
return (mod.default as any)(props, request);
},
"site/loaders/wishlist": async (props: any, request?: Request) => {
const mod = await import("../../loaders/wishlist");
return (mod.default as any)(props, request);
},
"site/loaders/wishlist.ts": async (props: any, request?: Request) => {
const mod = await import("../../loaders/wishlist");
return (mod.default as any)(props, request);
},
};