This commit is contained in:
2024-06-18 21:31:48 +01:00
parent fb8f2b0405
commit 18c900699e

View File

@@ -7,7 +7,7 @@ require('dotenv').config();
const app = express(); const app = express();
const PORT = process.env.PORT || 3000; const PORT = process.env.PORT || 3000;
const GITEA_SECRET = 123 const GITEA_SECRET = '123';
// Serve static files from the 'public' directory // Serve static files from the 'public' directory
app.use(express.static(path.join(__dirname, 'public'))); app.use(express.static(path.join(__dirname, 'public')));