Skip to content

Commit

Permalink
correct img path
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeb4dev committed Apr 12, 2024
1 parent 0aefc3c commit 8a83322
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/components/langingpage/SocialmediaIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="some-container">
<a :href="Socialmedia.url" target="_blank" class="relative w-full group">
<img
:src="Socialmedia.img"
:src="config.public['API_URL'] + 'assets/' + Socialmedia.img"
:alt="Socialmedia.name"
loading="lazy"
:class="'some-logo scale-100 group-hover:scale-110 ' + custom_style"
Expand All @@ -16,6 +16,7 @@
</template>

<script setup lang="ts">
const config = useRuntimeConfig();
const Socialmedia = defineProps({
url: {
type: String,
Expand Down

0 comments on commit 8a83322

Please sign in to comment.