- Changed base image to mcr.microsoft.com/devcontainers/base:debian - Updated system dependencies in Dockerfile - Modified devcontainer.json for improved configuration - Added tasks.json for npm build and development scripts
23 lines
No EOL
343 B
JSON
23 lines
No EOL
343 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "npm",
|
|
"script": "build",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [],
|
|
"label": "npm: build",
|
|
"detail": "vite build"
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "dev",
|
|
"problemMatcher": [],
|
|
"label": "npm: dev",
|
|
"detail": "vite"
|
|
}
|
|
]
|
|
} |