This commit is contained in:
fencl
2024-01-02 09:05:04 +01:00
parent f20eda4c29
commit 8a83bd925a
12 changed files with 1037 additions and 1103 deletions

View File

@@ -1,11 +0,0 @@
const express = require('express');
const path = require('path');
const app = express();
const port = 3000;
app.use(express.static(path.join(__dirname, '')));
app.listen(port, () => {
console.log(`Server běží na http://localhost:${port}`);
});