diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-08-27 01:05:43 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-08-27 01:05:43 -0700 |
| commit | 53c7ce959b5c72002c5444b7d6e5b458331a4275 (patch) | |
| tree | 1226a3694ea2f840bb6c3353a4ee5282efd43bf0 /.vscode | |
Initial commit
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" + } + ] +} |
