Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Local settings can be overridden in VScode Dev Container by placing the settings in a file named settings.json in the .devcontainer folder at the root of the project. The contents of this file will be applied when the container is started, replacing any existing settings.

To override a specific setting, add it to the settings.json file with the desired value. For example, to change the font size:

{
  "editor.fontSize": 16
}

To reset a setting to its default value, set the value to null. For example, to reset the font size:

{
  "editor.fontSize": null
}