devcontainer.json 342 B

12345678910111213141516
  1. {
  2. "name": "Wavium",
  3. "image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm",
  4. "features": {
  5. "ghcr.io/devcontainers/features/git:1": {}
  6. },
  7. "forwardPorts": [3000],
  8. "postCreateCommand": "npm install",
  9. "customizations": {
  10. "windsurf": {
  11. "extensions": [
  12. "esbenp.prettier-vscode"
  13. ]
  14. }
  15. }
  16. }