CSS anpassen

This commit is contained in:
chk
2026-03-10 08:45:00 +01:00
parent d6743f7669
commit 20e2790552
4 changed files with 25 additions and 16 deletions

View File

@@ -6,6 +6,6 @@ module.exports = {
},
server: {
port: Number(process.env.PORT) || 3000
port: Number(process.env.PORT) || 10000
}
};

View File

@@ -37,6 +37,7 @@ wss.on("connection", (ws) => {
try {
const data = JSON.parse(msg);
console.log("Message from WSS: " + msg);
if (data.type === "jog") {
fluid.jog(data.axis, data.value);
}