about summary refs log tree commit diff
path: root/nuxt.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'nuxt.config.js')
-rw-r--r--nuxt.config.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/nuxt.config.js b/nuxt.config.js
index a0ae413..2663e3b 100644
--- a/nuxt.config.js
+++ b/nuxt.config.js
@@ -53,7 +53,8 @@ export default {
   modules: [
     // Doc: https://axios.nuxtjs.org/usage
     '@nuxtjs/axios',
-    '@nuxtjs/pwa'
+    '@nuxtjs/pwa',
+    '@nuxtjs/markdownit'
   ],
   /*
    ** Axios module configuration
@@ -68,5 +69,10 @@ export default {
      ** You can extend webpack config here
      */
     extend(config, ctx) {}
+  },
+  markdownit: {
+    preset: 'default',
+    linkify: true,
+    breaks: true
   }
 }