diff options
| author | Yuval Adam <_@yuv.al> | 2025-09-24 08:59:36 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-09-24 08:59:36 +0200 |
| commit | 564ada7388d7fba9a952fecdae1db4ecbe0c7fd9 (patch) | |
| tree | 885d8b11724811923f51db84f073b31649ec9d26 /.vscode | |
Initial astro project
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/extensions.json | 4 | ||||
| -rw-r--r-- | .vscode/launch.json | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..22a1505 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,4 @@ +{ + "recommendations": ["astro-build.astro-vscode"], + "unwantedRecommendations": [] +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d642209 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "command": "./node_modules/.bin/astro dev", + "name": "Development server", + "request": "launch", + "type": "node-terminal" + } + ] +} |
