You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add portless integration for local HTTPS development
Switch local development from localhost ports to portless HTTPS domains
on .local.conar.app. Updates dev scripts, env examples, CORS/trusted
origins, and removes hardcoded port configuration from Vite and servers.
Co-authored-by: Valerii Strilets <letstri@users.noreply.github.com>
Copy file name to clipboardExpand all lines: apps/api/package.json
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,10 @@
1
1
{
2
2
"name": "@conar/api",
3
3
"type": "module",
4
+
"portless": "api.local.conar",
4
5
"scripts": {
5
-
"dev": "cross-env NODE_ENV=development bun --watch run ./index.ts",
6
-
"start": "cross-env NODE_ENV=production bun run ./index.ts",
6
+
"dev": "portless run cross-env NODE_ENV=development BUN_CONFIG_MAX_HTTP_REQUESTS=4096 bun --watch run ./index.ts",
7
+
"start": "cross-env NODE_ENV=production BUN_CONFIG_MAX_HTTP_REQUESTS=4096 bun run ./index.ts",
7
8
"check-types": "tsgo",
8
9
"test:start": "cross-env NODE_ENV=test bun --env-file=.env.test drizzle-kit migrate && cross-env NODE_ENV=test bun --env-file=.env.test run ./index.ts",
0 commit comments