Zum Hauptinhalt springen
Internal notes
TitleQuality of Life tips
Preview Link... life

Quality of Life tips

Docusaurus uses MDX as well as regular Markdown. Most extensions for VSCode are written with Markdown in mind. To get fancy editing features also for .mdx files, we'll tell VSCode that they should be treated as markdown files. To do this,

  1. While using VSCode, enter Ctrl+ShiftP and look for JSON user settings
  2. Open Preferences: Open User Settings (JSON)
  3. Add the following to your files.associations configuration
"files.associations": {
"*.mdx": "markdown"
},