Files
url-shortener/.devcontainer/frontend/devcontainer.json
T
2025-11-23 20:42:56 +01:00

30 lines
904 B
JSON

{
"name": "URL Shortener Frontend",
"image": "oven/bun:1",
"remoteUser": "bun",
"workspaceFolder": "/workspaces",
"workspaceMount": "source=${localWorkspaceFolder}/frontend,target=/workspaces,type=bind",
"forwardPorts": [
5173
],
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
},
"extensions": []
},
"extensions": [
"burkeholland.simple-react-snippets",
"dsznajder.es7-react-js-snippets",
"biomejs.biome",
"bradlc.vscode-tailwindcss"
]
}
},
"postCreateCommand": "bun install"
}