1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-18 19:19:36 +02:00

Fixed bug with custom css not persisting

This commit is contained in:
unknown 2021-07-17 23:11:24 +02:00
parent 4143ae8198
commit 88785aaa32
5 changed files with 40 additions and 12 deletions

View file

@ -7,6 +7,7 @@ const Socket = require('./Socket');
const Sockets = require('./Sockets');
const associateModels = require('./models/associateModels');
const initConfig = require('./utils/initConfig');
const findCss = require('./utils/findCss');
const Logger = require('./utils/Logger');
const logger = new Logger();
@ -16,6 +17,7 @@ const PORT = process.env.PORT || 5005;
await connectDB();
await associateModels();
await initConfig();
findCss();
// Create server for Express API and WebSockets
const server = http.createServer();