feat(memo): added memo base

This commit is contained in:
Corentin Thomasset 2021-08-02 21:35:12 +02:00
parent a40aae44ce
commit a5953a3c42
No known key found for this signature in database
GPG key ID: DBD997E935996158
11 changed files with 864 additions and 157 deletions

View file

@ -44,6 +44,7 @@ export default {
'@nuxtjs/vuetify',
// '@nuxtjs/router-extras'
'~/buildModules/tool-config',
'~/buildModules/memo',
'@nuxtjs/google-fonts'
],
@ -134,5 +135,18 @@ export default {
sitemap: {
hostname: 'https://it-tools.tech',
gzip: true
},
markdownit: {
preset: 'default',
linkify: true,
breaks: true,
runtime: true,
typographer: true,
html: false,
use: [
'markdown-it-anchor',
'markdown-it-highlightjs'
]
}
}