Skip to content

Commit

Permalink
fix(config): use manual setted HOST env variable instead of use VERCE…
Browse files Browse the repository at this point in the history
…L_URL
  • Loading branch information
mateusfg7 committed Jul 14, 2023
1 parent 0377a13 commit ff1703e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ export const config = {
description: "Mateus Felipe's notes, articles, reflections and knowledge..."
},
webserver: {
host: process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : 'http://localhost:3000'
host: process.env.HOST ?? 'http://localhost:3000'
}
}

0 comments on commit ff1703e

Please sign in to comment.