docs: add section on .mdx file support in VS Code (#4694)
* docs: add section on .mdx file support in VS Code * Update packages/integrations/mdx/README.md Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> Co-authored-by: Matthew Phillips <matthew@matthewphillips.info> Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> Co-authored-by: Matthew Phillips <matthew@skypack.dev>
This commit is contained in:
parent
64f11c4cee
commit
eb4f6faee6
1 changed files with 12 additions and 0 deletions
|
@ -57,6 +57,18 @@ export default defineConfig({
|
|||
});
|
||||
```
|
||||
|
||||
Finally, restart the dev server.
|
||||
|
||||
### Editor Integration
|
||||
|
||||
[VS Code](https://code.visualstudio.com/) supports Markdown by default. However, for MDX editor support, you may wish to add the following setting in your VSCode config. This ensures authoring MDX files provides a Markdown-like editor experience.
|
||||
|
||||
```json title=".vscode/settings.json"
|
||||
"files.associations": {
|
||||
"*.mdx": "markdown"
|
||||
}
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
You can [add MDX pages to your project](https://docs.astro.build/en/guides/markdown-content/#markdown-and-mdx-pages) by adding `.mdx` files within your `src/pages/` directory.
|
||||
|
|
Loading…
Reference in a new issue