mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
13 lines
277 B
JSON
13 lines
277 B
JSON
|
{
|
||
|
"version": 2,
|
||
|
"name": "with-cookie-auth",
|
||
|
"builds": [
|
||
|
{ "src": "www/package.json", "use": "@now/next" },
|
||
|
{ "src": "api/*.js", "use": "@now/node" }
|
||
|
],
|
||
|
"routes": [
|
||
|
{ "src": "/api/(.*)", "dest": "/api/$1" },
|
||
|
{ "src": "/(.*)", "dest": "/www/$1" }
|
||
|
]
|
||
|
}
|