You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Devcontainer, the Gihub Codespaces configuration file
2
+
3
+
This configuration is intended for [Github Codespaces](https://docs.github.com/en/codespaces) users.
4
+
5
+
The `devcontainer.json` file allows to specify a configuration that can be used to create a Codespace.
6
+
7
+
Refer to the official [Codespaces devcontainers documentation](https://docs.github.com/en/codespaces/setting-up-your-project-for-codespaces/adding-a-dev-container-configuration) for more information.
8
+
9
+
## Elements
10
+
11
+
The code below forces the installation of the MDX extension for VSCode inside a Codespace.
12
+
13
+
```json
14
+
{
15
+
"customizations": {
16
+
"vscode": {
17
+
"extensions": ["unifiedjs.vscode-mdx"]
18
+
}
19
+
}
20
+
}
21
+
```
22
+
23
+
**Note:** The identifier of the extension (e.g. `unifiedjs.vscode-mdx`) can be found on the VSCode extension page, under "More info".
0 commit comments