diff options
author | 2022-06-21 19:07:07 +0200 | |
---|---|---|
committer | 2022-06-21 13:07:07 -0400 | |
commit | e88b23ea5271369bcd26b0f011cc9146fc258b8c (patch) | |
tree | c784e82e3d66674ef924474b409a0c31d0521313 /examples/deno/.vscode | |
parent | b4db008e53867386542aa6e74c9649f574045dc9 (diff) | |
download | astro-e88b23ea5271369bcd26b0f011cc9146fc258b8c.tar.gz astro-e88b23ea5271369bcd26b0f011cc9146fc258b8c.tar.zst astro-e88b23ea5271369bcd26b0f011cc9146fc258b8c.zip |
add Astro Deno Example (#3645)
* add Astro Deno Example
* add changeset
* update pnpm lock
Co-authored-by: Dan Jutan <danjutan@gmail.com>
Diffstat (limited to 'examples/deno/.vscode')
-rw-r--r-- | examples/deno/.vscode/extensions.json | 4 | ||||
-rw-r--r-- | examples/deno/.vscode/launch.json | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/examples/deno/.vscode/extensions.json b/examples/deno/.vscode/extensions.json new file mode 100644 index 000000000..22a15055d --- /dev/null +++ b/examples/deno/.vscode/extensions.json @@ -0,0 +1,4 @@ +{ + "recommendations": ["astro-build.astro-vscode"], + "unwantedRecommendations": [] +} diff --git a/examples/deno/.vscode/launch.json b/examples/deno/.vscode/launch.json new file mode 100644 index 000000000..d64220976 --- /dev/null +++ b/examples/deno/.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" + } + ] +} |