{
	// 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",
			"osx": {
				"runtimeExecutable": "/Applications/Chromium.app/Contents/MacOS/Chromium"
				// "runtimeExecutable": "stable",
			},
			"linux": {
				"runtimeExecutable": "custom"
			},
			"request": "launch",
			"name": "Frontend",
			"url": "https://localhost:5173",
			"webRoot": "${workspaceFolder}",
			"userDataDir": "${env:HOME}/.vscode/chromium-data",
			"runtimeArgs": [
				// "--custom-devtools-frontend=file://${env:HOME}/.vscode/devtools-frontend/",
				"--ozone-platform=wayland",
				"--enable-features=WaylandWindowDecorations",
				"--allow-insecure-localhost"
				// "--ignore-certificate-errors",
				// "--unsafely-treat-insecure-origin-as-secure=https://localhost:5173",
			],
			"sourceMaps": true,
			"timeout": 20000,
			"outFiles": [
				"${workspaceFolder}/**/*.{js,jsx}",
				"!**/node_modules/**"
			],
			"noDebug": true
		}
	]
}
