如何在 VSCode 中查看 .mdx 文件的预览作为降价

How to see preview of .mdx file as markdown in VSCode

有什么方法可以 force VSCode 像预览 *.md 文件一样将 *.mdx 文件预览为 markdown?作为参考,请参阅 Github 如何显示 this mdx 文件

的预览

我知道有一个扩展 MDX Preview but that's not working for next.js project. see open issue

我尝试了这个 vscode 设置但不起作用:

"files.associations": {
    "*.mdx": "md"
  },

files.associations 中,您提到了用于特定文件扩展名的 languageId

"files.associations": {
    "*.mdx": "markdown"
},