diff options
Diffstat (limited to 'nuxt.config.js')
-rw-r--r-- | nuxt.config.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/nuxt.config.js b/nuxt.config.js index 104781c..4c07f72 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -69,7 +69,8 @@ export default { modules: [ // Doc: https://axios.nuxtjs.org/usage '@nuxtjs/axios', - '@nuxtjs/pwa' + '@nuxtjs/pwa', + '@nuxtjs/markdownit' ], /* ** Axios module configuration @@ -79,6 +80,11 @@ export default { /* ** Build configuration */ + markdownit: { + preset: 'default', + linkify: true, + breaks: true + }, build: { /* ** You can extend webpack config here |