forked from nikolav/eldv6puwgfm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.d.ts
47 lines (46 loc) · 1.2 KB
/
nuxt.config.d.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
declare module "@nuxt/schema" {
interface NuxtConfig {
tailwindcss?: {
cssPath?: string | undefined;
configPath?: string | undefined;
exposeConfig?: boolean | undefined;
config?: any;
injectPosition?: number | undefined;
viewer?: boolean | undefined;
};
colorMode?: {
classSuffix?: string | undefined;
preference?: string | undefined;
fallback?: string | undefined;
hid?: string | undefined;
globalName?: string | undefined;
componentName?: string | undefined;
classPrefix?: string | undefined;
storageKey?: string | undefined;
};
googleFonts?: {
families?: {
[name: string]:
| boolean
| number[]
| { wght?: number[]; ital?: number[] };
};
display?: string;
subsets?: string | string[];
text?: string | null;
prefetch?: boolean;
preconnect?: boolean;
preload?: boolean;
useStylesheet?: boolean;
download?: boolean;
base64?: boolean;
inject?: boolean;
overwriting?: boolean;
outputDir?: string;
stylePath?: string;
fontsDir?: string;
fontsPath?: string;
};
}
}
export {};