From 0b9656f9c0ef9d150d4d3fdfdb0a326810695f80 Mon Sep 17 00:00:00 2001 From: Victor Algaze Date: Mon, 20 May 2024 02:59:10 -0700 Subject: [PATCH] add public dir for asset pathing --- docs/.vitepress/config.mts | 2 +- docs/index.md | 2 +- docs/{ => public}/sb_logo.svg | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename docs/{ => public}/sb_logo.svg (100%) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 2a061b9..16b9754 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -7,7 +7,7 @@ export default defineConfig({ title: "SpeedyBot", description: "Rich conversation agents, the speedy and easy way", themeConfig: { - logo: "./..//sb_logo.svg", + logo: "./../public/sb_logo.svg", footer: { message: `MIT License ${new Date().getFullYear()}`, // this'll be statically updated everytime redeploy }, diff --git a/docs/index.md b/docs/index.md index cb903c5..cd421c9 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,7 +6,7 @@ hero: text: "Rich conversation systems, the speedy and easy way" # tagline: Efficiently design, deploy, and secure rich conversation systems in enterprises and large teams image: - src: https://raw.githubusercontent.com/valgaze/speedybot-utils/main/assets/sb_logo.svg + src: ./public/sb_logo.svg alt: SpeedyBot actions: - theme: brand diff --git a/docs/sb_logo.svg b/docs/public/sb_logo.svg similarity index 100% rename from docs/sb_logo.svg rename to docs/public/sb_logo.svg