anki/.vscode.dist/tasks.json
RumovZ ebc6c0847a
HMR on Windows (#3144)
* Enable hot module reloading on Windows

* Update VSC launch.json and tasks.json

* Bind vite server to 127.0.0.1 (dae)

Our frontend connects via IP, and on Windows, this fails if the server
is bound to 'localhost' instead.
2024-04-17 21:23:34 +10:00

22 lines
444 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "ninja",
"command": "ninja",
"args": [
"pylib",
"qt"
],
"windows": {
"command": "tools/ninja.bat",
"args": [
"pylib",
"qt",
"extract:win_amd64_audio"
]
}
}
]
}