about summary refs log tree commit diff
path: root/pages/kronika
diff options
context:
space:
mode:
Diffstat (limited to 'pages/kronika')
-rw-r--r--pages/kronika/_year/_month/_day/_title/index.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/pages/kronika/_year/_month/_day/_title/index.vue b/pages/kronika/_year/_month/_day/_title/index.vue
index 485bfc4..0bd6c80 100644
--- a/pages/kronika/_year/_month/_day/_title/index.vue
+++ b/pages/kronika/_year/_month/_day/_title/index.vue
@@ -19,9 +19,11 @@
 <script>
 import axios from 'axios'
 
+import { apiUrl } from '~/api'
+
 export default {
   head() {
-    if (this.attributes) {
+    if (!this.notFound) {
       return {
         meta: [
           {
@@ -51,9 +53,7 @@ export default {
   async asyncData({ params }) {
     const { year, month, day, title } = params
     const response = await axios
-      .get(
-        `https://feature-json-api--puszcza.netlify.com/api/posts/${year}/${month}/${day}/${title}.json`
-      )
+      .get(`${apiUrl}/posts/${year}/${month}/${day}/${title}.json`)
       .catch((err) => ({ notFound: true }))
 
     const post = response.data