From 0c12665fdac0e2fbdee38ebb8f00d46cb6616152 Mon Sep 17 00:00:00 2001 From: Soybean Date: Sun, 15 Jan 2023 11:00:00 +0800 Subject: [PATCH] build(projects): add VSCode debug config file --- .gitignore | 1 + .vscode/launch.json | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 9f08e2d9..f1d336d0 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ stats.html # Editor directories and files .vscode/* !.vscode/extensions.json +!.vscode/launch.json !.vscode/settings.json .idea *.suo diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..f305eb73 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,12 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Vue debugger", + "url": "http://localhost:3200", + "webRoot": "${workspaceFolder}" + } + ] +}