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 a9480bf commit 24b6f37Copy full SHA for 24b6f37
packages/auth/src/core/util/handler.ts
@@ -130,7 +130,10 @@ export async function _getRedirectUrl(
130
function getHandlerBase({ config }: AuthInternal): string {
131
if (!config.emulator) {
132
const path = `https://${config.authDomain}/${WIDGET_PATH}`;
133
- if(typeof process !== 'undefined' && process.env.FIREBASE_USE_HANDLER_EXT) {
+ if (
134
+ typeof process !== 'undefined' &&
135
+ process.env.FIREBASE_USE_HANDLER_EXT
136
+ ) {
137
// Static servers require extensions to infer Content-Type
138
return `${path}.html`;
139
}
0 commit comments