优化了样式和图标

This commit is contained in:
2023-12-18 06:31:59 +00:00
parent b7675248c3
commit 5a8e5d093a
3 changed files with 17 additions and 12 deletions

View File

@ -111,6 +111,9 @@ backend.stdout.on('data', (data) => {
app.get('/', (req, res) => {
res.sendFile(join(__dirname, 'index.html'));
});
app.get('/favicon.ico', (req, res) => {
res.sendFile(join(__dirname, 'book.ico'));
});
app.get('/communication.js', (req, res) => {
res.sendFile(join(__dirname, 'communication.js'));
});