From f14c7823fc0ac6f71eeab4a6b437b2aed462b0d4 Mon Sep 17 00:00:00 2001 From: shadowdoc Date: Fri, 16 Aug 2024 10:22:33 -0700 Subject: [PATCH] vs code bits for astro.build --- astro-docs/.vscode/extensions.json | 4 ++++ astro-docs/.vscode/launch.json | 11 +++++++++++ 2 files changed, 15 insertions(+) create mode 100644 astro-docs/.vscode/extensions.json create mode 100644 astro-docs/.vscode/launch.json diff --git a/astro-docs/.vscode/extensions.json b/astro-docs/.vscode/extensions.json new file mode 100644 index 0000000..22a1505 --- /dev/null +++ b/astro-docs/.vscode/extensions.json @@ -0,0 +1,4 @@ +{ + "recommendations": ["astro-build.astro-vscode"], + "unwantedRecommendations": [] +} diff --git a/astro-docs/.vscode/launch.json b/astro-docs/.vscode/launch.json new file mode 100644 index 0000000..d642209 --- /dev/null +++ b/astro-docs/.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" + } + ] +}