diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-11-28 11:08:37 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-11-28 11:08:37 +0100 |
commit | 1b70d2f3c1dbed43317c1da7ed8092daac27168d (patch) | |
tree | ab9349c271807259d5b7e6706aabeb6c67111bfc /nuxt.config.js | |
parent | 8da7dad19ed454831b63d51058dd22550b9ac10c (diff) | |
download | puszcza-1b70d2f3c1dbed43317c1da7ed8092daac27168d.tar.gz puszcza-1b70d2f3c1dbed43317c1da7ed8092daac27168d.zip |
Add ranking rules
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 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 } } |