diff --git a/.github/workflows/next.yml b/.github/workflows/next.yml
index 07cad47..7648d85 100644
--- a/.github/workflows/next.yml
+++ b/.github/workflows/next.yml
@@ -101,6 +101,7 @@ jobs:
touch playground/dist/.nojekyll
env:
BASE_URL: /vue-semantic-structure/playground/
+ VITE_GITHUB_URL: https://github.com/basics/vue-semantic-structure
- name: Archive Production Artifact
uses: actions/upload-artifact@v4
with:
diff --git a/playground/src/App.vue b/playground/src/App.vue
index 5183e25..c884861 100644
--- a/playground/src/App.vue
+++ b/playground/src/App.vue
@@ -149,6 +149,8 @@
+
+
@@ -157,6 +159,9 @@ import DebugContainer from '@/components/DebugContainer.vue';
import DebugHeadline from '@/components/DebugHeadline.vue';
import DebugContainerComposable from '@/components/composable/DebugContainer.vue';
import DebugHeadlineComposable from '@/components/composable/DebugHeadline.vue';
+import GithubCorner from './components/GithubCorner.vue';
+
+const GITHUB_URL = import.meta.env.VITE_GITHUB_URL;