Skip to content

Commit 7d64aaf

Browse files
committed
Fix import paths in configuration and documentation files
1 parent 12ebe16 commit 7d64aaf

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

astro.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
import vtbot from "astro-vtbot";
1212
import d2 from "astro-d2";
1313
import inoxToolsPortalGun from "@inox-tools/portal-gun";
14-
import type { Badge } from "node_modules/@astrojs/starlight/schemas/badge";
14+
import type { Badge } from "./node_modules/@astrojs/starlight/schemas/badge";
1515
import sitemap from '@astrojs/sitemap';
1616

1717
export default defineConfig({
@@ -223,7 +223,7 @@ function sidebar() {
223223
{
224224
label: "@vtbag",
225225
link: "/vtbag/",
226-
},
226+
},
227227
{
228228
label: "Basic Information",
229229
items: [

src/content/docs/basics/examples.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ head:
88
content: "/examples-og.png"
99
---
1010

11-
import DemoLink from "src/components/DemoLink.astro";
11+
import DemoLink from "/src/components/DemoLink.astro";
1212

1313
This page references a series of view transition examples, starting with basic configurations and progressively incorporating more features. The tables below provide a brief description of what distinguishes each example and includes a link to the live example which also includes its code and a detailed explanation.
1414

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "astro/tsconfigs/strictest",
33
"exclude": ["node_modules", "dist"],
44
"compilerOptions": {
5-
"baseUrl": ".",
65
"types": ["@cloudflare/workers-types"],
76
"paths": { "@/*": ["./src/*"] }
87
}

0 commit comments

Comments
 (0)