-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} |