diff --git a/.codesandbox/tasks.json b/.codesandbox/tasks.json index 53dae51..f3ac31a 100644 --- a/.codesandbox/tasks.json +++ b/.codesandbox/tasks.json @@ -1,22 +1,21 @@ -"tasks": { - "npm start": { - "name": "start dev server", - "command": "npm start", - "runAtStart": true, - "preview": { - "port": 3000 +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [], + + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "npm start": { + "name": "start dev server", + "command": "npm start", + "runAtStart": false, + "preview": { + "port": 3000 + } + }, + "npm build": { + "name": "npm build", + "command": "npm run build" } }, - "npm test": { - "name": "run Unit Tests", - "command": "npm test", - "runAtStart": false, - "preview": { - "port": 3000 - } - }, - "npm build": { - "name": "npm build", - "command": "npm run build" - } + "node": "20" }