-
Notifications
You must be signed in to change notification settings - Fork 2
/
design.config.js
66 lines (61 loc) · 1.03 KB
/
design.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
const path = require('path')
const icons = [
'account-group',
'alert',
'alert-outline',
'alert-circle',
'alert-circle-outline',
'auto-download',
'download',
'download-circle',
'download-box',
'barcode',
'calendar-check',
'check-circle',
'close',
'close-circle-outline',
'cog',
'comment-multiple',
'dots-vertical',
'download',
'earth',
'eye',
'eye-off',
'file-document',
'file-alert',
'file-check',
'file-download',
'help-circle',
'help-circle-outline',
'information-outline',
'magnify',
'new-box',
'open-in-new',
'puzzle',
'sort-ascending',
'sort-descending',
'tune',
'view-dashboard',
'menu',
'pencil',
'sync',
]
const iconsRoot = path.join(
path.dirname(require.resolve('@mdi/svg/package.json')),
'./svg'
)
const config = {
icons: {
path: iconsRoot,
files: icons,
},
output: {
path: path.join(__dirname, 'public/design'),
publicPath: '/design',
icons: {
files: 'icons',
sprite: 'icons.svg',
},
},
}
module.exports = config