-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.iconify.ini
More file actions
32 lines (27 loc) · 975 Bytes
/
.iconify.ini
File metadata and controls
32 lines (27 loc) · 975 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
26
27
28
29
30
31
32
[api]
; The Iconify API host. Default is 'api.iconify.design'
; host = api.iconify.design
; The API port to connect to. Default is 443.
; port = 443
[output]
; Directory where downloaded icons will be saved
; Path is relative to the config file. Default is '$CWD'
out_dir = ./src/icons
; Determines folder structure:
; - 'flat' all icons are stored in the configured folder
; - 'prefixed' like 'flat' but the filenames have their collection prefix in front
; - 'grouped' a subfolder for each collection's prefix is generated
placement = prefixed
; Filename strategy for downloaded icons:
; - 'lower' Strategy for lowercase
; - 'upper' Strategy for UPPERCASE
; - 'camel' Strategy for camelCase
; - 'pascal' Strategy for PascalCase
; - 'kebab' Strategy for kebab-case
naming = pascal
; Template or output format:
; - 'svg' A raw svg file template
; - 'raw' A raw ESM JavaScript template
; - 'raw-ts' A raw ESM TypeScript template
; - 'vue' A Vue.js template
template = vue