Skip to content

Commit

Permalink
Update launch.json with modified command for Development server and G…
Browse files Browse the repository at this point in the history
…enerate article

- Updated the "command" property for the "Development server" configuration in launch.json to include a call to execute "./node_modules/.bin/astro dev".
- No changes were made to the "Generate article" configuration.
  • Loading branch information
zanhk committed Aug 11, 2023
1 parent 310e059 commit 8738b81
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
},
{
"type": "node",
"request": "launch",
"name": "Generate article",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}\\scripts\\generate-article.js"
}
]
"version": "0.2.0",
"configurations": [
{
"command": "call ./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
},
{
"type": "node",
"request": "launch",
"name": "Generate article",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}\\scripts\\generate-article.js"
}
]
}

0 comments on commit 8738b81

Please sign in to comment.