Skip to content

Commit 48d70f2

Browse files
committed
Switch builder entrypoint to a single file
1 parent 3c2d742 commit 48d70f2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

final/server/now.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"version": 2,
3-
"builds": [
4-
{ "src": "src/{,!(__tests__)/**/}*.js", "use": "@now/node-server" }
5-
],
6-
"routes": [{ "src": "/.*", "dest": "index.js" }]
3+
"builds": [{ "src": "src/index.js", "use": "@now/node-server" }],
4+
"routes": [{ "src": "/.*", "dest": "src/index.js" }]
75
}

0 commit comments

Comments
 (0)