Skip to content

Commit db71d85

Browse files
committed
docs: fix URLs, remove link to v1 docs
1 parent c8c9567 commit db71d85

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ There is also the `baklavajs` package, which contains the core package as well a
3434

3535
## Getting Started & Documentation
3636

37-
You can find the documentation here: https://v2.baklava.tech
37+
You can find the documentation here: https://baklava.tech
3838

3939
## BaklavaJS v1
4040
The old version of BaklavaJS can be found here: https://github.com/newcat/baklavajs/tree/v1

docs/.vitepress/config.mts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,7 @@ export default defineConfig({
1212
nav: [
1313
{
1414
text: "API Reference",
15-
link: "https://v2.baklava.tech/api/",
16-
},
17-
{
18-
text: "v1",
19-
link: "https://v1.baklava.tech",
15+
link: "https://baklava.tech/api/",
2016
},
2117
],
2218
sidebar: [

docs/components/ApiLink.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const props = withDefaults(
2121
2222
const href = computed(() => {
2323
const transformedModuleName = props.module.replace("@", "_").replace("/", "_").replace("-", "_");
24-
let url = `https://v2.baklava.tech/api/${props.type}/${transformedModuleName}`;
24+
let url = `https://baklava.tech/api/${props.type}/${transformedModuleName}`;
2525
if (props.type !== "modules") {
2626
url += `.${props.name}`;
2727
}

0 commit comments

Comments
 (0)