Skip to content

Commit 8bad385

Browse files
authored
fix(app): start command should not run in dev mode (#724)
1 parent bd17e3b commit 8bad385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"scripts": {
3131
"dev": "bun --hot ./server.ts",
32-
"start": "bun ./server.ts",
32+
"start": "NODE_ENV=production bun ./server.ts",
3333
"test": "nx docker comparadise && nx test:e2e frontend"
3434
}
3535
}

0 commit comments

Comments
 (0)