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:
parent
9ef310601c
commit
4e24628aac
2 changed files with 9 additions and 0 deletions
5
.changeset/empty-ants-crash.md
Normal file
5
.changeset/empty-ants-crash.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"@astrojs/db": patch
|
||||
---
|
||||
|
||||
Add all regions to the link command
|
|
@ -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,
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue