Home/Config Files/manifest.json
Config File Wiki

manifest.json config guide

Web app manifest for installability, icons, names, theme color, and display mode.

Field explanations

  • Top-level settings define the tool behavior
  • Environment-specific blocks override defaults
  • Paths are usually relative to the config file or project root
  • Secrets should be referenced, not committed

Minimal template

{
  "name": "example",
  "enabled": true
}

Common usage patterns

  • Keep manifest.json small and reviewable
  • Use comments only when the format supports them
  • Commit example files with placeholder values
  • Validate locally before deploying

Common errors

  • Invalid icon sizes
  • start_url wrong after deploy
  • Missing maskable icon
  • JSON comments break parsing

Online validation

Validate syntax first, then compare behavior against your deploy target. For JSON-based configs, use the JSON formatter before debugging tool-specific behavior.

Related tools