diff --git a/2022/01/nuxt_demo1/components/Navigation.vue b/2022/01/nuxt_demo1/components/Navigation.vue
index 1ce8246..724c97f 100644
--- a/2022/01/nuxt_demo1/components/Navigation.vue
+++ b/2022/01/nuxt_demo1/components/Navigation.vue
@@ -2,14 +2,13 @@
-
-
-
+
+
+
diff --git a/2022/01/nuxt_demo1/nuxt.config.js b/2022/01/nuxt_demo1/nuxt.config.js
index cb3766b..9ef6d07 100644
--- a/2022/01/nuxt_demo1/nuxt.config.js
+++ b/2022/01/nuxt_demo1/nuxt.config.js
@@ -12,7 +12,7 @@ export default {
let postRoutes = listOfPosts
.map(it => it.slug)
.map((slug) => {
- return '/post/' + slug;
+ return '/blog/post/' + slug;
});
return postRoutes;
@@ -24,7 +24,7 @@ export default {
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
- title: 'nuxt_demo1',
+ title: 'Tomasz Półgrabia\'s BLog',
htmlAttrs: {
lang: 'en'
},
@@ -60,6 +60,11 @@ export default {
config.node = {
fs: 'empty'
};
+
+ // disable for production
+ config.devtool = 'source-map';
}
- }
+ },
+
+ ssr: true
}