summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-09-24 08:59:36 +0200
committerYuval Adam <_@yuv.al>2025-09-24 08:59:36 +0200
commit564ada7388d7fba9a952fecdae1db4ecbe0c7fd9 (patch)
tree885d8b11724811923f51db84f073b31649ec9d26 /.vscode
Initial astro project
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/extensions.json4
-rw-r--r--.vscode/launch.json11
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"
+ }
+ ]
+}