We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b03eaba commit d7ea5c9Copy full SHA for d7ea5c9
web/src/components/Web3Info.vue
@@ -2,7 +2,7 @@
2
<div>
3
<div v-if="status.initializing" class="text-center">Connecting...</div>
4
<div v-else-if="!status.connected" class="d-flex flex-column align-items-center">
5
- <img src="/mm-logo.svg" class="p-2" />
+ <img :src="publicPath + 'mm-logo.svg'" class="p-2" />
6
<p class="pt-2 mb-0">You need to connect your Metamask wallet to continue.</p>
7
<a class="btn btn-link mb-5" target="_blank" href="https://metamask.io/download.html"
8
>Get metamask</a
@@ -30,6 +30,7 @@ export default defineComponent({
30
return {
31
status,
32
connect,
33
+ publicPath: process.env.BASE_URL,
34
};
35
},
36
});
0 commit comments