diff --git a/layouts/error.vue b/layouts/error.vue
index 9c965d36..ff7d9aa4 100644
--- a/layouts/error.vue
+++ b/layouts/error.vue
@@ -16,7 +16,7 @@
-
+
Page not found, sorry.
@@ -28,7 +28,7 @@
- {{this.error ? this.error.message : 'An error occurred'}}
+ {{ error ? error.message : 'An error occurred' }}
Back
diff --git a/nuxt.config.js b/nuxt.config.js
index 73e81ed0..626296f8 100644
--- a/nuxt.config.js
+++ b/nuxt.config.js
@@ -14,7 +14,11 @@ export default {
meta: [
{charset: 'utf-8'},
{name: 'viewport', content: 'width=device-width, initial-scale=1'},
- {hid: 'description', name: 'description', content: 'Aggregated set of useful tools that every developer may need once in a while.'},
+ {
+ hid: 'description',
+ name: 'description',
+ content: 'Aggregated set of useful tools that every developer may need once in a while.'
+ },
{hid: 'keywords', name: 'keywords', content: ['tools', 'tool', 'it', 'developer', 'web', 'computing']}
],
link: [{rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}]