This commit is contained in:
Florian Zia 2023-07-04 17:07:01 +02:00
Родитель cbd8c4c935
Коммит b51f90a63f
Не найден ключ, соответствующий данной подписи
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -108,6 +108,6 @@ export default defineConfig({
command: 'npm run build; npm start',
port: 6060,
// Building the app can take some time:
timeout: 360 * 1000,
timeout: 720 * 1000,
}
})

Просмотреть файл

@ -820,9 +820,9 @@ export interface IRelevantLocation {
name: string;
stateCode: string;
countryCode: string;
featureClass: TLocationFeatureClass;
featureCode: TLocationFeatureCode;
population: TLocationPopulation;
featureClass: string;
featureCode: string;
population: string;
alternateNames?: Array<string>;
}