add start script

This commit is contained in:
Jurgis Sakalauskas
2023-10-30 09:10:53 +02:00
parent f38803d60d
commit 1d7072aee0
11 changed files with 26 additions and 59 deletions
+4
View File
@@ -38,6 +38,10 @@ export class ConfigService {
public getRecentSearchesConfig(): RecentSearchesConfig {
return this.recentSearches;
}
public isDev(): boolean {
return this.getEnv('NODE_ENV') !== 'production';
}
}
export const configService = new ConfigService();