0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[VSCode] スキーマを読み込めない?

0
Last updated at Posted at 2026-02-16

VSCodeでcatppuccin(カラーテーマ)を使おうとしたら、setting.jsonに以下のエラーが出た。

'https://esm.sh/gh/catppuccin/vscode@catppuccin-vsc-v3.18.1/packages/catppuccin-vsc/schemas/customUIColors.schema.json' からスキーマを読み込めません: Location https://esm.sh/gh/catppuccin/vscode@catppuccin-vsc-v3.18.1/packages/catppuccin-vsc/schemas/customUIColors.schema.json is untrusted。

解決方法

setting.jsonに以下を追記する

  "json.schemaDownload.trustedDomains": {
    "<エラーにあるURLのベースドメイン>": true
  }

私の場合の例は以下

  "json.schemaDownload.trustedDomains": {
    "https://esm.sh/": true
  }
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?