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 84edc9b commit 390dd6aCopy full SHA for 390dd6a
packages/auth-services/src/login-server/src/app.ts
@@ -8,7 +8,8 @@ import path from 'node:path';
8
// TypeError: The "path" argument must be of type string or an instance of URL. Received undefined
9
// at fileURLToPath (node:internal/url:1606:11)
10
// at Object.<anonymous> (/Users/js-sdk/dist/apps/lit-auth-server/main.cjs:490211:90)
11
-const resolvedDirname = typeof __dirname !== 'undefined' ? __dirname : process.cwd();
+const resolvedDirname =
12
+ typeof __dirname !== 'undefined' ? __dirname : process.cwd();
13
14
type DiscordTokenResponse = {
15
access_token?: string;
0 commit comments