DAM-static-site/.devcontainer/devcontainer.json
2025-02-24 17:02:03 +06:00

24 lines
449 B
JSON
Executable File

{
"name": "Hugo",
"build": {
"dockerfile": "Dockerfile",
"args": {
"GO_VERSION": "1.24.0",
"HUGO_VERSION": "0.144.2"
}
},
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"bradlc.vscode-tailwindcss",
"budparr.language-hugo-vscode",
"tamasfe.even-better-toml"
]
}
},
"remoteUser": "node",
"postCreateCommand": "npm run project-setup && npm install && npm run dev",
"forwardPorts": [1313]
}