storyboard-vue/babel.config.js
Adam Coldrick d001701bb7 Add a component to render markdown
This commit adds a simple markdown component using markdown-it. It
includes Prism.js to handle syntax highlighting for code snippets.
2020-05-06 22:20:35 +01:00

17 lines
283 B
JavaScript

module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
],
plugins: [
[
'prismjs',
{
languages: ['javascript', 'css', 'html'],
plugins: ['line-numbers', 'show-language'],
theme: 'tomorrow',
css: true
}
]
]
}