diff --git a/README.md b/README.md index f9c7179..8737f38 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ _You can also run all tasks with `bun run`, i.e `bun run dev`_ -[vite]: https://vitejs.dev +[vite]: https://vite.dev [react]: https://react.dev [TypeScript]: https://www.typescriptlang.org [tailwindcss]: https://tailwindcss.com diff --git a/e2e/app.spec.ts b/e2e/app.spec.ts index 8fe9168..2dcfd03 100644 --- a/e2e/app.spec.ts +++ b/e2e/app.spec.ts @@ -20,7 +20,7 @@ test.describe("external links", () => { await newPage.waitForLoadState(); - await expect(newPage).toHaveURL("https://vitejs.dev/"); + await expect(newPage).toHaveURL("https://vite.dev/"); }); test("opened React docs", async ({ page, context }) => { diff --git a/src/config/external-links.ts b/src/config/external-links.ts index b169ba8..008f372 100644 --- a/src/config/external-links.ts +++ b/src/config/external-links.ts @@ -1,5 +1,5 @@ export const externalLinks = { - "Vite": "https://vitejs.dev", + "Vite": "https://vite.dev", "React": "https://react.dev", "TypeScript": "https://www.typescriptlang.org", "tailwindcss": "https://tailwindcss.com",