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 19ce159 commit 3b717a4Copy full SHA for 3b717a4
frontend/public/tidal.svg
frontend/src/lib/constants.ts
@@ -1,4 +1,6 @@
1
-export const API_BASE_URL = "https://api-alternify.vercel.app"
+export const API_BASE_URL = import.meta.env.DEV
2
+ ? "http://127.0.0.1:5000"
3
+ : "https://api-alternify.vercel.app"
4
5
export const servicesAvailable = [
6
"genius",
@@ -11,6 +13,7 @@ export const servicesAvailable = [
11
13
"letras",
12
14
"soundcloud",
15
"spotify",
16
+ "tidal"
17
] as const;
18
19
export const assets = {
@@ -23,6 +26,7 @@ export const assets = {
23
26
soundcloud: "/soundcloud.svg",
24
27
musixmatch: "/musixmatch.png",
25
28
amazon: "/amazon-music.png",
29
+ tidal: "/tidal.svg",
30
} as const;
31
32
export const spinner = `\
0 commit comments