akanjs 2.4.1-rc.5 → 2.4.1-rc.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/base/baseEnv.ts +1 -1
  2. package/package.json +1 -1
package/base/baseEnv.ts CHANGED
@@ -130,7 +130,7 @@ export const getEnv = (): ClientEnv => {
130
130
 
131
131
  const serverPort =
132
132
  side === "server"
133
- ? parseInt(process.env.AKAN_PUBLIC_SERVER_PORT ?? (operationMode === "local" ? "8282" : "443"))
133
+ ? parseInt(process.env.AKAN_PUBLIC_SERVER_PORT ?? "8282")
134
134
  : parseInt(window.location.port || (window.location.protocol === "https:" ? "443" : "80"));
135
135
 
136
136
  const serverHttpProtocol: "http:" | "https:" =
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akanjs",
3
- "version": "2.4.1-rc.5",
3
+ "version": "2.4.1-rc.6",
4
4
  "sourceType": "module",
5
5
  "type": "module",
6
6
  "publishConfig": {