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
2021-10-08 18:32:15 +02:00

17 lines
285 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Serve the website",
"console": "integratedTerminal",
"runtimeExecutable": "yarn",
"runtimeArgs": [
"run",
"start"
],
}
]
}