Skip to content

Commit

Permalink
avoid custom image, add file exclusion paths
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolCoderSJ authored Sep 5, 2024
1 parent 6b55c36 commit b69ead9
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node
{
"name": "SCC HTML",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm",

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand All @@ -21,7 +19,13 @@
"achil.vscode-javascript-repl",
"ms-vsliveshare.vsliveshare",
"ritwickdey.liveserver"
]
],
"settings": {
"files.exclude": {
".devcontainer/": true,
".github/": true
}
}
}
}

Expand Down

0 comments on commit b69ead9

Please sign in to comment.