-
Notifications
You must be signed in to change notification settings - Fork 0
/
houdini.config.js
38 lines (36 loc) · 968 Bytes
/
houdini.config.js
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
/// <references types="houdini-svelte">
/// <references types="houdini-plugin-svelte-global-stores">
/** @type {import('houdini').ConfigFile} */
const config = {
apiUrl: 'http://127.0.0.1:42011/api/graphql',
plugins: {
'houdini-svelte': {
client: './src/lib/client',
static: true,
},
'houdini-plugin-svelte-global-stores': {
generate: 'all',
},
},
scalars: {
UUID: {
type: 'string',
},
DateTime: {
type: 'string',
},
JSON: {
type: 'any',
},
JSONObject: {
type: 'any',
},
FileList: {
type: 'Record<string, [string | null, string | null, string][]>',
},
BatchList: {
type: 'Record<string, Record<string, { offset: number; size_compressed: number; size_uncompressed: number; }>>',
},
},
};
export default config;