We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbef74b commit 184f4a5Copy full SHA for 184f4a5
1 file changed
src/config.ts
@@ -1,7 +1,10 @@
1
const config = {
2
youtubeRegex: /(?:youtube\.com\/(?:[^\/]+\/.+\/|(?:v|e(?:mbed)?)\/|.*[?&]v=)|youtu\.be\/)([^"&?\/\s]{11})/,
3
databaseUrl: process.env.DATABASE_URL,
4
- baseUrl: process.env.BASE_URL || "http://localhost:3000",
+ baseUrl:
5
+ process.env.BASE_URL ||
6
+ process.env.REACT_APP_BASE_URL ||
7
+ "http://localhost:3000",
8
}
9
10
export default config
0 commit comments