ebc6c0847a
* 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.
22 lines
444 B
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|