Working version 0.1.

This commit is contained in:
2023-12-27 23:24:03 +01:00
parent 38edb49053
commit 04b3a7d02d
13 changed files with 4425 additions and 1 deletions

4
stop-server.sh Executable file
View File

@@ -0,0 +1,4 @@
# stop-server.sh
#!/bin/bash
PORT=8080 # Der Port, auf dem Ihr Webpack Dev Server läuft
lsof -i tcp:${PORT} | grep LISTEN | awk '{print $2}' | xargs kill