From 2200615d9dd48468263c4fc32418527161e0b2eb Mon Sep 17 00:00:00 2001 From: Anthony Dumas Date: Sun, 4 Oct 2020 00:41:43 +0200 Subject: [PATCH] Ajout du launch.json pour Firefox --- .vscode/launch.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a8500e7 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // Utilisez IntelliSense pour en savoir plus sur les attributs possibles. + // Pointez pour afficher la description des attributs existants. + // Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Launch localhost", + "type": "firefox", + "request": "launch", + "reAttach": true, + "url": "http://192.168.0.3:3000", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file