kb-one-de/.codesandbox/tasks.json
kB01 41a89ae883
Some checks failed
CI / build (push) Failing after 0s
Switched to Doks Theme (not building)
2025-04-24 18:32:17 +02:00

22 lines
575 B
JSON

{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Install Dependencies",
"command": "npm install"
}
],
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"start": {
"name": "dev",
"command": "npm run dev -- --baseURL=/ --appendPort=false --liveReloadPort=443 --bind=0.0.0.0",
"runAtStart": true
},
"install": {
"name": "install dependencies",
"command": "npm install"
}
}
}