miru/.vscode/launch.json
ThaUnknown 14720a07c6
feat: kitsu sync, local sync continue/planning list
fix: fav and bookmark icon not updating for local sync
fix: cards not showing local progress
fix: animated anilist PFPs not working
fix: menubar being selectable
fix: offline banner moving content outside of screen
fix: local sync entry deletion being problematic
2025-06-06 18:53:43 +02:00

28 lines
No EOL
498 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chromium",
"port": 8412,
"request": "launch",
"type": "chrome",
"url": "http://localhost:7344/",
"webRoot": "${workspaceFolder}/src",
"timeout": 60000,
"presentation": {
"hidden": true
}
}
],
"compounds": [
{
"name": "Attach",
"configurations": [
"Launch Chromium"
],
"presentation": {
"order": 1
}
}
]
}