Skip to content

Commit 0a88928

Browse files
committed
[Landing] Fix now "regions" field error
1 parent 6412382 commit 0a88928

3 files changed

Lines changed: 16 additions & 9 deletions

File tree

landing/now.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
"use": "@now/next"
1010
}
1111
],
12-
"regions": [
13-
"all"
14-
],
1512
"github": {
1613
"enabled": false,
1714
"autoAlias": false

now.app.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
"alias": "app.devhubapp.com",
55
"version": 2,
66
"builds": [
7-
{ "src": "packages/web/dist/**", "use": "@now/static" }
7+
{
8+
"src": "packages/web/dist/**",
9+
"use": "@now/static"
10+
}
811
],
912
"routes": [
1013
{
@@ -17,10 +20,12 @@
1720
},
1821
{
1922
"src": "/(.*)",
20-
"status": 301, "headers": { "Location": "/" }
23+
"status": 301,
24+
"headers": {
25+
"Location": "/"
26+
}
2127
}
2228
],
23-
"regions": ["all"],
2429
"github": {
2530
"enabled": false,
2631
"autoAlias": false

now.beta.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
"alias": "beta.devhubapp.com",
55
"version": 2,
66
"builds": [
7-
{ "src": "packages/web/dist/**", "use": "@now/static" }
7+
{
8+
"src": "packages/web/dist/**",
9+
"use": "@now/static"
10+
}
811
],
912
"routes": [
1013
{
@@ -17,10 +20,12 @@
1720
},
1821
{
1922
"src": "/(.*)",
20-
"status": 301, "headers": { "Location": "/" }
23+
"status": 301,
24+
"headers": {
25+
"Location": "/"
26+
}
2127
}
2228
],
23-
"regions": ["all"],
2429
"github": {
2530
"enabled": false,
2631
"autoAlias": false

0 commit comments

Comments
 (0)