We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9441689 commit f193a8aCopy full SHA for f193a8a
.github/workflows/build-test-ci.yml
@@ -4,7 +4,7 @@
4
#
5
# https://pnpm.io/next/continuous-integration#github-actions
6
7
-name: Build and test TypeScript SDK CI
+name: Build and test
8
9
on:
10
push:
src/lib/config/config.ts
@@ -3,11 +3,11 @@
3
import {env} from '$env/dynamic/private';
import {version} from '$app/environment';
-//write a method to handle if the KINDE_REDIRECT_URL is not a valid url new URL(env.KINDE_REDIRECT_URL).origin
function getBaseURL() {
try {
return new URL(env.KINDE_REDIRECT_URL).origin;
} catch (error) {
+ console.error('Invalid KINDE_REDIRECT_URL:', error.message);
11
return '';
12
}
13
0 commit comments