mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 09:43:10 +00:00
* devops: Docusaurus Dev Container Signed-off-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> * formatted devcontainer.json Co-authored-by: slorber <lorber.sebastien@gmail.com>
11 lines
303 B
JSON
11 lines
303 B
JSON
{
|
|
"name": "Docusaurus Dev Container",
|
|
"image": "mcr.microsoft.com/vscode/devcontainers/typescript-node:0-10-buster",
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/bash"
|
|
},
|
|
"extensions": ["dbaeumer.vscode-eslint"],
|
|
"forwardPorts": [3000],
|
|
"postCreateCommand": "yarn install"
|
|
}
|