feat: adds codesandbox config

This commit is contained in:
Mark Mankarious 2023-07-29 10:04:13 +01:00
parent 55f9b37c56
commit b23c3a9593

24
.codesandbox/tasks.json Normal file
View file

@ -0,0 +1,24 @@
{
"setupTasks": [
{
"name": "Install dependencies",
"command": "npm i"
}
],
"tasks": {
"start": {
"name": "Start Isoflow",
"command": "npm run start",
"runAtStart": true,
"preview": {
"port": 3000,
"prLink": "direct"
}
},
"test": {
"name": "Run tests",
"command": "npm run test",
"runAtStart": false
}
}
}