diff --git a/.vscode/tasks.json b/.vscode/tasks.json index cee1abe..7e092b0 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -14,6 +14,34 @@ }, "group": "none", "problemMatcher": [] + }, + { + "label": "Build prod", + "command": "npm", + "type": "shell", + "args": [ + "run", + "buildProd" + ], + "presentation": { + "reveal": "always" + }, + "group": "none", + "problemMatcher": [] + }, + { + "label": "Build dev", + "command": "npm", + "type": "shell", + "args": [ + "run", + "build" + ], + "presentation": { + "reveal": "always" + }, + "group": "none", + "problemMatcher": [] } ] } \ No newline at end of file