@blinkdotnew/dev-sdk 2.1.9 → 2.2.0
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.
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1179,13 +1179,13 @@ var BlinkAuth = class {
|
|
|
1179
1179
|
this.authConfig = {
|
|
1180
1180
|
mode: "managed",
|
|
1181
1181
|
// Default mode
|
|
1182
|
-
authUrl: "https://
|
|
1182
|
+
authUrl: "https://dev.blink.new",
|
|
1183
1183
|
coreUrl: "https://core.blink.new",
|
|
1184
1184
|
detectSessionInUrl: true,
|
|
1185
1185
|
// Default to true for web compatibility
|
|
1186
1186
|
...config.auth
|
|
1187
1187
|
};
|
|
1188
|
-
this.authUrl = "https://
|
|
1188
|
+
this.authUrl = "https://dev.blink.new";
|
|
1189
1189
|
this.coreUrl = this.authConfig.coreUrl || "https://core.blink.new";
|
|
1190
1190
|
const hostname = getLocationHostname();
|
|
1191
1191
|
if (hostname && this.authUrl === "https://blink.new" && (hostname === "localhost" || hostname === "127.0.0.1")) {
|
package/dist/index.mjs
CHANGED
|
@@ -1177,13 +1177,13 @@ var BlinkAuth = class {
|
|
|
1177
1177
|
this.authConfig = {
|
|
1178
1178
|
mode: "managed",
|
|
1179
1179
|
// Default mode
|
|
1180
|
-
authUrl: "https://
|
|
1180
|
+
authUrl: "https://dev.blink.new",
|
|
1181
1181
|
coreUrl: "https://core.blink.new",
|
|
1182
1182
|
detectSessionInUrl: true,
|
|
1183
1183
|
// Default to true for web compatibility
|
|
1184
1184
|
...config.auth
|
|
1185
1185
|
};
|
|
1186
|
-
this.authUrl = "https://
|
|
1186
|
+
this.authUrl = "https://dev.blink.new";
|
|
1187
1187
|
this.coreUrl = this.authConfig.coreUrl || "https://core.blink.new";
|
|
1188
1188
|
const hostname = getLocationHostname();
|
|
1189
1189
|
if (hostname && this.authUrl === "https://blink.new" && (hostname === "localhost" || hostname === "127.0.0.1")) {
|
package/package.json
CHANGED