From ac8365b4d02afb1a59f5149b675321547c9ac422 Mon Sep 17 00:00:00 2001 From: ValentinVignal Date: Sun, 25 Feb 2024 19:39:27 +0800 Subject: [PATCH 1/3] chore: Add vscode launch setup --- .vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..f6b35a0 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:3000", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file From ee7f775aa3f2a7116692447e1fd806fcfb154e0f Mon Sep 17 00:00:00 2001 From: ValentinVignal Date: Tue, 5 Mar 2024 00:26:16 +0800 Subject: [PATCH 2/3] chore: Delete launch.json --- .vscode/launch.json | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index f6b35a0..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "chrome", - "request": "launch", - "name": "Launch Chrome against localhost", - "url": "http://localhost:3000", - "webRoot": "${workspaceFolder}" - } - ] -} \ No newline at end of file From 45dbc56f0989e77084a17bb24c47f661542e41e4 Mon Sep 17 00:00:00 2001 From: ValentinVignal Date: Tue, 5 Mar 2024 00:26:43 +0800 Subject: [PATCH 3/3] chore: Add launch.json to .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 8b182cf..c43ea0e 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ yarn-debug.log* yarn-error.log* .env +.vscode/launch.json