mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-01-13 09:00:45 +08:00
29 lines
515 B
JSON
29 lines
515 B
JSON
{
|
|
"public": true,
|
|
"name": "devhub",
|
|
"alias": "devhubapp.com",
|
|
"version": 2,
|
|
"builds": [
|
|
{ "src": "packages/web/dist/**", "use": "@now/static" }
|
|
],
|
|
"routes": [
|
|
{
|
|
"src": "/(.*)\\.(.*)",
|
|
"dest": "/packages/web/dist/$1.$2"
|
|
},
|
|
{
|
|
"src": "/",
|
|
"dest": "/packages/web/dist/index.html"
|
|
},
|
|
{
|
|
"src": "/(.*)",
|
|
"status": 301, "headers": { "Location": "/" }
|
|
}
|
|
],
|
|
"regions": ["all"],
|
|
"github": {
|
|
"enabled": false,
|
|
"autoAlias": false
|
|
}
|
|
}
|