hinesboy / mavonEditor

mavonEditor - A markdown editor based on Vue that supports a variety of personalized features
http://www.mavoneditor.com/
MIT License
6.38k stars 916 forks source link

[Question] 直接引用md文件,怎么通过绝对或相对路径引用图片 #853

Open hanqicheng opened 1 year ago

hanqicheng commented 1 year ago

💬 Questions and Help

我拉取了mavonEditor的源码并运行,我发现源码可以直接在md文件中通过绝对路径来引用图片,但我直接的vue项目使用相同的方法引用图片却加载不出来是为什么,是需要配置什么吗

我自己的vue项目为了解决引用md文件报错在vue.config.js中添加了如下配置

    config.module
      .rule('md')
      .test(/\.md$/)
      .use('raw-loader')
      .loader('raw-loader')
      .end()

如下是官方运行结果

image

如下是我本地运行结果

image