fix: solved breaking error on production with draggable paths in leaflet

This commit is contained in:
Davide Passoni
2024-12-18 14:22:19 +01:00
parent 2bbcbc5576
commit 416f0d3e36
3 changed files with 25 additions and 3 deletions

View File

@@ -26,6 +26,28 @@
"--vite"
],
"restart": true
},
{
"type": "node",
"request": "launch",
"name": "Launch server (core only, static)",
"skipFiles": [
"<node_internals>/**"
],
"runtimeExecutable": "nodemon",
"runtimeArgs": [
"--watch",
"src/**/*.ts",
"--exec",
"node",
"--inspect",
"-r",
"ts-node/register",
"src/www.ts",
"-c",
"${input:enterDir}/Config/olympus.json"
],
"restart": true
},
{
"type": "node",