diff --git a/.gitignore b/.gitignore index 020d331bf..e9c316654 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ dist-ssr !.vscode/extensions.json !.vscode/tailwind.json !.vscode/settings.json.default +!.vscode/launch.json.default .idea .DS_Store *.suo diff --git a/.vscode/launch.json.default b/.vscode/launch.json.default new file mode 100644 index 000000000..e762e6b6a --- /dev/null +++ b/.vscode/launch.json.default @@ -0,0 +1,16 @@ +{ + // 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 on frontend dev", + "url": "http://localhost:5173", + "webRoot": "${workspaceFolder}/src", + "sourceMaps": true, + } + ] +} \ No newline at end of file