Skip to content

Commit 5b53f03

Browse files
authored
fix: update vitepress base path
Update base path to deploying directory(usually the repo name). If base is set to '/',VitePress will generate a link pointing to the root directory of the domain name(https://volcengine.github.io/), which will result in a 404 error when deploying under a subdirectory(https://volcengine.github.io/agentkit-sdk-python).
1 parent 675de83 commit 5b53f03

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/.vitepress/config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
export default {
22
title: 'AgentKit',
33
description: 'Python SDK and CLI for building Agent applications on Volcengine',
4-
base: '/',
5-
4+
base: '/agentkit-sdk-python/',
5+
66
head: [
77
['link', { rel: 'icon', href: '/favicon.ico' }]
88
],
@@ -571,4 +571,4 @@ export default {
571571
}
572572
}
573573
}
574-
}
574+
}

0 commit comments

Comments
 (0)