UNPKG

424 BMarkdownView Raw
1# 常见问题
2
3### icon
4在 docs 目录下,新建 _components 文件夹,创建 Icon.jsx 文件,复制以下源码,可将系统默认的 icon 替换成 docs/ydoc.ico
5
6```html
7<link rel="shortcut icon" href={relePath(props.distPath, 'ydoc.ico')} />
8```
9
10### 引入js 和css
11配置如下:
12```json
13{
14 "pluginsConfig": {
15 "import-asset": {
16 "css": ["custom.css"],
17 "js": ["custom.js"]
18 }
19 }
20}
21
22```
23
24