Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize for Web Core Vitals #86

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions components/Hero.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
class="hero-image"
:src="`/${img.path}`"
:alt="img.alt"
height="500px"
width="100%"
>
</template>

Expand Down
2 changes: 2 additions & 0 deletions components/LargeTile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
<img
class="blog-card__author-img"
:src="article.author.image"
height="160px"
width="100%"
>
{{ article.author.name }}
</div>
Expand Down
2 changes: 2 additions & 0 deletions components/Polaroid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
class="polaroid__image"
:src="imagePath"
alt="Ramona"
height="260px"
width="260px"
>
</div>
</section>
Expand Down
1 change: 1 addition & 0 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ export default {

googleFonts: {
download: true,
prefetch: true,
base64: true,
families: {
Roboto: true,
Expand Down
2 changes: 2 additions & 0 deletions pages/conferences.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
alt="Moe giving talks"
src="/ramona-schwering-talks-small.jpeg"
class=" img-header"
height="550"
width="250px"
>
</div>
<TableOverview :contents="futureEvents"/>
Expand Down