diff options
| author | Khsmty <me@khsmty.com> | 2023-03-05 01:47:08 +0000 |
|---|---|---|
| committer | Khsmty <me@khsmty.com> | 2023-03-05 01:47:08 +0000 |
| commit | 68ab056b3c9e58b18f18591de3ef21d0d2a16294 (patch) | |
| tree | 2228888b64d6509679c30e98b76034bd1ab8fae7 /.devcontainer/devcontainer.json | |
| parent | Dev Container周り (diff) | |
| download | sharkey-68ab056b3c9e58b18f18591de3ef21d0d2a16294.tar.gz sharkey-68ab056b3c9e58b18f18591de3ef21d0d2a16294.tar.bz2 sharkey-68ab056b3c9e58b18f18591de3ef21d0d2a16294.zip | |
fix: pnpm が command not found になるのを修正
Diffstat (limited to '.devcontainer/devcontainer.json')
| -rw-r--r-- | .devcontainer/devcontainer.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 59d3959462..9d970e9bcb 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,6 +3,9 @@ "dockerComposeFile": "docker-compose.yml", "service": "app", "workspaceFolder": "/workspace", + "features": { + "ghcr.io/devcontainers-contrib/features/pnpm:2": {} + }, "forwardPorts": [3000], "postCreateCommand": "sudo chmod 755 .devcontainer/init.sh && .devcontainer/init.sh", "customizations": { |