Skip to content

Commit

Permalink
Images are served in public folder, instead of compiled
Browse files Browse the repository at this point in the history
  • Loading branch information
BT-Creator committed Jul 24, 2024
1 parent 0599aac commit dbbd29c
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
File renamed without changes
File renamed without changes
3 changes: 1 addition & 2 deletions loama/src/components/explorer/ResourceExplorer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@
</ExplorerEntry>
</div>
<div class="right-panel">
<Vault class="side-image" />
<img class="side-image" src="/vault.svg" />
<strong>No folder or file selected!</strong>
<i>Select one to get started</i>
</div>
</div>
</template>

<script setup lang="ts">
import Vault from "@/assets/vault.svg"
import { store } from "@/store";
import type { Session } from "@inrupt/solid-client-authn-browser";
import { getPod } from "loama-controller";
Expand Down
3 changes: 1 addition & 2 deletions loama/src/components/header/HeaderBase.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<header>
<div class="wordmark">
<Loama />
<img src="/loama.svg" />
<span>Loama</span>
</div>
<nav>
Expand All @@ -20,7 +20,6 @@

<script setup lang="ts">
import { ref } from 'vue';
import Loama from '../../assets/loama.svg'
import LoButton from '../LoButton.vue'
import HeaderContextMenu from './HeaderContextMenu.vue'
import { PhShareFat } from '@phosphor-icons/vue';
Expand Down
2 changes: 1 addition & 1 deletion loama/src/views/LoginView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</div>
<div class="right-panel">
<InfoPopup v-show="showPopup" />
<img src="../assets/loama.svg" />
<img src="/loama.svg" />
</div>
</div>
</template>
Expand Down

0 comments on commit dbbd29c

Please sign in to comment.