diff options
Diffstat (limited to 'components/Posts')
-rw-r--r-- | components/Posts/PostLink.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/Posts/PostLink.vue b/components/Posts/PostLink.vue index 0361b80..b7bfab4 100644 --- a/components/Posts/PostLink.vue +++ b/components/Posts/PostLink.vue @@ -1,6 +1,6 @@ <template> <div class="post-link"> - <nuxt-link :to="route"> + <nuxt-link :to="route" no-prefetch> <div> <div class="image" :style="`background-image: url('${image}')`" /> <div class="post-container"> @@ -31,7 +31,7 @@ export default { image: { type: String, required: false, - default: () => '/assets/og/default.jpg', + default: '/assets/og/default.jpg', }, }, computed: { |