1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-10-16 07:17:28 +00:00

Create VSC run config

This commit is contained in:
Steffo 2023-02-28 13:04:56 +01:00
parent cc044df0dc
commit cf59a3fc65
Signed by: steffo
GPG key ID: 2A24051445686895

18
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"name": "Run website",
"request": "launch",
"runtimeArgs": [
"run",
"dev"
],
"runtimeExecutable": "yarn",
"skipFiles": [
"<node_internals>/**"
],
}
]
}