0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00

add missing regions to link command (#10432)

This commit is contained in:
Fred K. Schott 2024-03-13 16:17:17 -07:00 committed by GitHub
parent 9ef310601c
commit 4e24628aac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,5 @@
---
"@astrojs/db": patch
---
Add all regions to the link command

View file

@ -238,6 +238,10 @@ export async function promptNewProjectRegion(): Promise<string> {
choices: [
{ title: 'North America (East)', value: 'NorthAmericaEast' },
{ title: 'North America (West)', value: 'NorthAmericaWest' },
{ title: 'Europe (Amsterdam)', value: 'EuropeCentral' },
{ title: 'South America (Brazil)', value: 'SouthAmericaEast' },
{ title: 'Asia (India)', value: 'AsiaSouth' },
{ title: 'Asia (Japan)', value: 'AsiaNorthEast' },
],
initial: 0,
});