Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
build: デバッグ用の設定を追加 (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiratake authored Sep 6, 2023
1 parent 6a3a94e commit 7b562ef
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chrome",
"request": "launch",
"type": "chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/web/src",
"presentation": {
"hidden": true
}
},
{
"name": "Launch Nuxt Server",
"request": "launch",
"type": "node",
"outputCapture": "std",
"cwd": "${workspaceFolder}/web",
"program": "${workspaceFolder}/node_modules/nuxi/bin/nuxi.mjs",
"args": ["dev"],
"presentation": {
"hidden": true
}
}
],
"compounds": [
{
"name": "Web",
"configurations": ["Launch Nuxt Server", "Launch Chrome"]
}
]
}

0 comments on commit 7b562ef

Please sign in to comment.