From 9a7fb695f9e954fd8ffc760fd7e69e3ec7bedb6a Mon Sep 17 00:00:00 2001 From: dwindown Date: Thu, 25 Dec 2025 01:14:20 +0700 Subject: [PATCH] Move opengraph.png to public folder for correct static asset serving MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Moved opengraph.png from src/ to public/ directory - This ensures the file is accessible at https://with.dwindi.com/opengraph.png - Vite serves files in public/ at root level without path prefix 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- index.html | 6 +++--- {src => public}/opengraph.png | Bin 2 files changed, 3 insertions(+), 3 deletions(-) rename {src => public}/opengraph.png (100%) diff --git a/index.html b/index.html index 82413cc..76ebfb2 100644 --- a/index.html +++ b/index.html @@ -11,15 +11,15 @@ - + - + - + diff --git a/src/opengraph.png b/public/opengraph.png similarity index 100% rename from src/opengraph.png rename to public/opengraph.png