mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-16 01:32:02 +10:00
fix(i18n): load locales from file system, instead of http-backend
This commit is contained in:
@ -27,10 +27,12 @@ const bootstrap = async () => {
|
||||
app.setViewEngine('hbs');
|
||||
|
||||
const configService = app.get(ConfigService);
|
||||
const serverUrl = configService.get<number>('app.serverUrl');
|
||||
const port = configService.get<number>('app.port');
|
||||
|
||||
await app.listen(port);
|
||||
Logger.log(`🚀 Server is running on: http://localhost:${port}/${globalPrefix}`);
|
||||
|
||||
Logger.log(`🚀 Server is running on: ${serverUrl}/${globalPrefix}`);
|
||||
};
|
||||
|
||||
bootstrap();
|
||||
|
||||
Reference in New Issue
Block a user