gulp refactor

This commit is contained in:
syuilo
2021-03-13 11:43:07 +09:00
parent 522dbb1e13
commit f41c851108
3 changed files with 9 additions and 9 deletions

View File

@ -60,7 +60,7 @@ export default defineComponent({
methods: {
fetchDoc() {
fetch(`${url}/assets/docs/${lang}/${this.doc}.md`).then(res => res.text()).then(md => {
fetch(`${url}/doc-assets/${lang}/${this.doc}.md`).then(res => res.text()).then(md => {
this.parse(md);
});
},