diff --git a/api/server/index.js b/api/server/index.js index d81a667b6c..1c9f571468 100644 --- a/api/server/index.js +++ b/api/server/index.js @@ -46,7 +46,7 @@ const startServer = async () => { app.disable('x-powered-by'); app.set('trust proxy', trusted_proxy); - await AppService(app); + await AppService(); const appConfig = await getAppConfig(); const indexPath = path.join(appConfig.paths.dist, 'index.html'); const indexHTML = fs.readFileSync(indexPath, 'utf8');