Files
tabler/.devcontainer/devcontainer.json
T

24 lines
505 B
JSON

{
"name": "Tabler",
"image": "mcr.microsoft.com/devcontainers/javascript-node:24",
"postCreateCommand": "corepack enable && pnpm install",
"forwardPorts": [3000, 3010],
"portsAttributes": {
"3000": {
"label": "Preview website"
},
"3010": {
"label": "Documentation website"
}
},
"customizations": {
"vscode": {
"extensions": [
"astro-build.astro-vscode",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint"
]
}
}
}