File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
turborepo-vercel/apps/remix-app Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,12 @@ const packages = glob
14
14
* @type {import('@remix-run/dev').AppConfig }
15
15
*/
16
16
module . exports = {
17
- serverBuildTarget : "vercel" ,
18
- appDirectory : "app" ,
19
- ignoredRouteFiles : [ ".*" ] ,
20
- assetsBuildDirectory : "public/build" ,
21
- // When running locally in development mode, we use the built in remix
17
+ ignoredRouteFiles : [ "**/.*" ] ,
18
+ // When running locally in development mode, we use the built-in remix
22
19
// server. This does not understand the vercel lambda module format,
23
20
// so we default back to the standard build output.
24
21
server : process . env . NODE_ENV === "development" ? undefined : "./server.js" ,
25
- serverDependenciesToBundle : [ / .* / ] ,
22
+ serverBuildPath : "api/index.js" ,
23
+ serverDependenciesToBundle : "all" ,
26
24
watchPaths : packages ,
27
25
} ;
You can’t perform that action at this time.
0 commit comments