Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {}
Copy link

Copilot AI Nov 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The empty features object should include Node.js configuration for this Next.js project. Consider adding Node.js feature:

"features": {
  "ghcr.io/devcontainers/features/node:1": {
    "version": "20"
  }
}

This ensures the devcontainer has the required Node.js runtime matching the project's dependency on @types/node": "20".

Suggested change
"features": {}
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "20"
}
}

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Nov 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The devcontainer configuration is missing setup for pnpm, which is the package manager specified in package.json (line 26). Consider adding a postCreateCommand to install pnpm:

"postCreateCommand": "npm install -g [email protected]"

Alternatively, you could use the pnpm feature if available, or include it in the Node.js feature configuration.

Suggested change
"features": {}
"features": {},
"postCreateCommand": "npm install -g [email protected]"

Copilot uses AI. Check for mistakes.
}