diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 39bbd26..85bf90f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,4 +1,19 @@ { "image": "mcr.microsoft.com/devcontainers/universal:2", - "features": {} + "features": {}, + "postCreateCommand": "npm install", + "forwardPorts": [3000], + "portsAttributes": { + "3000": { + "label": "Application", + "onAutoForward": "notify" + } + }, + "customizations": { + "vscode": { + "extensions": [ + "dbaeumer.vscode-eslint" + ] + } + } }