popov.link/.devcontainer/devcontainer.json

16 lines
328 B
JSON
Raw Permalink Normal View History

2024-07-09 22:27:35 +03:00
{
2024-09-05 00:16:37 +03:00
"image": "mcr.microsoft.com/devcontainers/javascript-node:22",
"forwardPorts": [4321],
2024-07-09 22:27:35 +03:00
"portsAttributes": {
2024-09-05 00:16:37 +03:00
"4321": {
2024-07-09 22:27:35 +03:00
"label": "Application",
"onAutoForward": "notify"
}
2024-09-05 00:16:37 +03:00
},
"customizations": {
"vscode": {
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"]
}
2024-07-09 22:27:35 +03:00
}
2024-09-05 00:16:37 +03:00
}