This repository has been archived on 2023-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
personal-website-old/.vscode/launch.json

17 lines
285 B
JSON
Raw Normal View History

2021-10-07 16:49:21 +00:00
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
2021-10-08 16:32:15 +00:00
"name": "Serve the website",
2021-10-07 16:49:21 +00:00
"console": "integratedTerminal",
2021-10-08 16:32:15 +00:00
"runtimeExecutable": "yarn",
2021-10-07 16:49:21 +00:00
"runtimeArgs": [
"run",
"start"
],
}
]
}