32 lines
645 B
JSON
32 lines
645 B
JSON
|
{
|
||
|
// These tasks will run in order when initializing your CodeSandbox project.
|
||
|
"setupTasks": [
|
||
|
{
|
||
|
"name": "Install Dependencies",
|
||
|
"command": "yarn install"
|
||
|
}
|
||
|
],
|
||
|
|
||
|
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
|
||
|
"tasks": {
|
||
|
"dev": {
|
||
|
"name": "dev",
|
||
|
"command": "yarn dev",
|
||
|
"runAtStart": true,
|
||
|
"preview": {
|
||
|
"port": 5173
|
||
|
}
|
||
|
},
|
||
|
"build": {
|
||
|
"name": "build",
|
||
|
"command": "yarn build",
|
||
|
"runAtStart": false
|
||
|
},
|
||
|
"preview": {
|
||
|
"name": "preview",
|
||
|
"command": "yarn preview",
|
||
|
"runAtStart": false
|
||
|
}
|
||
|
}
|
||
|
}
|