Skip to content

Commit

Permalink
fix: correct netlify build supabase redirect url (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
0-vortex committed Aug 31, 2022
1 parent 885c33b commit 0b2b80a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate-netlify-env.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if (process.env.CI === "true") {
console.log(`Running in Netlify ${process.env.CHANNEL} environment`);

const {protocol, hostname} = new URL(process.env.URL);
base = `${protocol}//${process.env.CHANNEL}.${hostname}/`;
base = `${protocol}//${process.env.CHANNEL}.${hostname}`;
}
}

Expand Down

0 comments on commit 0b2b80a

Please sign in to comment.