Open ewen-lbh opened 5 years ago
I know this isn't really an issue but @ravenq you might wanna consider supporting nuxt out-of-the-box
@ewen-lbh Thanks for you issue!
This package do not supports for SSR yet, because the plugins of charts (echarts, flowchart, memaid.js) do not surpport for SSR.
you can close the ssr option in the nuxt.config.js:
plugins: [
{ src: '@/plugins/markdown-it-vue', ssr: false }
],
and make a file in plugins folder, 'markdown-it-vue.js'
import Vue from 'vue'
import MarkdownItVue from 'markdown-it-vue'
import 'markdown-it-vue/dist/markdown-it-vue.css'
Vue.use(MarkdownItVue)
I will try to make it supports for SSR if it can be.
@ravenq Is it possible to create a separate build without all the chart plugins, to use it with nuxt ssr? The same principle as markdown-it-light
, I mean.
Personally, I don't need the chart functionality at all, however, it's critical for me to be able to render it with Nuxt SSR
@ravenq Is it possible to create a separate build without all the chart plugins, to use it with nuxt ssr? The same principle as
markdown-it-light
, I mean.Personally, I don't need the chart functionality at all, however, it's critical for me to be able to render it with Nuxt SSR
Have you tried the Nuxt community module? https://www.npmjs.com/package/@nuxtjs/markdownit
@ravenq Can you provide a fully functional version of the SSR framework for Nuxt.js compared to your version? This is very important to me and I need it very much. Thank you. If one day you release this version, please let me know. Thank you! My email is liqinglin0314@aliyun.com
If you are having trouble with a "
window
is undefined"–type of error while trying to use it with a universal (SSR, Server-side rendered) app, you might want to follow this guide: https://medium.com/@codebeast_/why-your-third-party-plugin-dont-work-in-nuxt-and-how-to-fix-it-d1a8caadf422It worked like a charm for me