forked from ant-design/ant-design-web3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dumirc.ts
36 lines (35 loc) · 941 Bytes
/
.dumirc.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
import { defineConfig } from 'dumi';
export default defineConfig({
mfsu: false,
resolve: {
atomDirs: [
{
type: 'component',
dir: 'packages/web3/src',
},
],
},
copy: ['CNAME'],
publicPath: process.env.PUBLIC_PATH || '/',
base: process.env.BASE || '/',
themeConfig: {
name: 'Ant Design Web3',
logo: 'https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg',
socialLinks: {
github: 'https://github.com/ant-design/ant-design-web3',
},
editLink: false,
},
favicons: ['https://gw.alipayobjects.com/zos/rmsportal/rlpTLlbMzTNYuZGGCVYM.png'],
metas: [
{ name: 'keywords', content: 'web3, Ant Design Web3, Ant Design, dapp, frontend, components' },
{ name: 'description', content: 'A Components for Web3, Based on Ant Design' },
],
locales: [
{
id: 'en-US',
name: 'English',
},
{ id: 'zh-CN', name: '中文' },
],
});