Skip to content

Commit

Permalink
set img src to public storage
Browse files Browse the repository at this point in the history
  • Loading branch information
1cadumagalhaes committed Sep 6, 2023
1 parent 3272f7e commit 088c619
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions components/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
<!--top-->
<div class="text-gray-100 text-xl flex-initial">
<div class="p-2.5 mt-1 flex flex-col items-center">
<img src="./public/img/logo-ga4.png" alt="Google Analytics 4" />
<img
src="https://storage.cloud.google.com/dp6-public/logo-ga4.png"
alt="Google Analytics 4"
/>
<h1 class="font-bold text-gray-200 text-[15px] ml-3">
GA4 Explorer
</h1>
Expand Down Expand Up @@ -44,7 +47,7 @@
<div class="flex flex-col items-center flex-initial">
<a href="https://dp6.github.io">
<img
src="./public/img/logo-dp6.png"
src="https://storage.cloud.google.com/dp6-public/logo-dp6.png"
alt="Logo DP6"
style="height: 32px"
/>
Expand Down
6 changes: 3 additions & 3 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export default defineNuxtConfig({
devtools: { enabled: true },
modules: ['@nuxthq/ui', 'nuxt-icon'],
// app: {
// baseURL: '/ga4_explorer/',
// },
app: {
baseURL: '/ga4_explorer/',
},
});

0 comments on commit 088c619

Please sign in to comment.