修复 docs.json 路径

This commit is contained in:
wuduoyi 2020-08-21 17:11:03 +08:00
parent 97c7504256
commit 0ad7029e83
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export default class DocSearch extends React.Component {
this.onSearchCancel = this.onSearchCancel.bind(this); this.onSearchCancel = this.onSearchCancel.bind(this);
} }
componentDidMount() { componentDidMount() {
Axios.get(__uri('../docs.json')) Axios.get(ContextPath + __uri('../docs.json'))
.then(result => { .then(result => {
this.docs = result.data.docs; this.docs = result.data.docs;
}) })