From 186aacf59a60a06071967304b9bb4ae2cb95f0c1 Mon Sep 17 00:00:00 2001 From: kj Date: Mon, 20 Jul 2026 09:13:13 -0500 Subject: [PATCH 1/2] docs(bolt-vite-react-ts): clarify @/ alias mapping in template prompt Co-Authored-By: Claude Opus 4.8 (1M context) --- bolt-vite-react-ts/.bolt/prompt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bolt-vite-react-ts/.bolt/prompt b/bolt-vite-react-ts/.bolt/prompt index 25a4e69..e6a8e1f 100644 --- a/bolt-vite-react-ts/.bolt/prompt +++ b/bolt-vite-react-ts/.bolt/prompt @@ -4,4 +4,4 @@ By default, this template supports JSX syntax with Tailwind CSS classes, React h Use icons from lucide-react for logos. -Import project modules with the `@/` path alias (`@/components/Foo`, maps to `src/`) instead of deep relative paths like `../../components/Foo`. +Import project modules with the `@/` path alias, which maps to `src/` (e.g. `@/components/Foo`), instead of deep relative paths like `../../components/Foo`. From 8c1a2dda5e786d46450b9cdd4844898f054bc86f Mon Sep 17 00:00:00 2001 From: kj Date: Mon, 20 Jul 2026 09:17:26 -0500 Subject: [PATCH 2/2] docs(bolt-vite-react-ts): show alias equivalence explicitly in example Co-Authored-By: Claude Opus 4.8 (1M context) --- bolt-vite-react-ts/.bolt/prompt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bolt-vite-react-ts/.bolt/prompt b/bolt-vite-react-ts/.bolt/prompt index e6a8e1f..dfed36a 100644 --- a/bolt-vite-react-ts/.bolt/prompt +++ b/bolt-vite-react-ts/.bolt/prompt @@ -4,4 +4,4 @@ By default, this template supports JSX syntax with Tailwind CSS classes, React h Use icons from lucide-react for logos. -Import project modules with the `@/` path alias, which maps to `src/` (e.g. `@/components/Foo`), instead of deep relative paths like `../../components/Foo`. +Import project modules with the `@/` path alias, which maps to `src/` (e.g. `@/components/Foo` == `src/components/Foo`), instead of deep relative paths like `../../components/Foo`.