diff --git a/netlify/edge-functions/now-playing.js b/api/now-playing.js
similarity index 95%
rename from netlify/edge-functions/now-playing.js
rename to api/now-playing.js
index 0bff6738..b452d29a 100644
--- a/netlify/edge-functions/now-playing.js
+++ b/api/now-playing.js
@@ -57,12 +57,8 @@ export default async () => {
const TV_KEY = Netlify.env.get("API_KEY_TRAKT");
const MUSIC_KEY = Netlify.env.get("API_KEY_LASTFM");
const headers = {
- headers: {
- "Content-Type": "application/json",
- "Cache-Control": "public, max-age=0, must-revalidate",
- "Netlify-CDN-Cache-Control":
- "public, max-age=0, stale-while-revalidate=210",
- },
+ "Content-Type": "application/json",
+ "Cache-Control": "public, s-maxage=3600",
};
const traktRes = await fetch("https://api.trakt.tv/users/cdransf/watching", {
@@ -87,7 +83,7 @@ export default async () => {
{
content: `📺 ${traktRes["show"]["title"]} • ${traktRes["episode"]["title"]}`,
},
- headers
+ {...headers}
);
}
@@ -96,7 +92,7 @@ export default async () => {
{
content: `🎥 ${traktRes["movie"]["title"]}`,
},
- headers
+ {...headers}
);
}
}
@@ -167,7 +163,7 @@ export default async () => {
track["artist"]["#text"]
}`,
},
- headers
+ {...headers}
);
};
diff --git a/netlify.toml b/netlify.toml
index b18dfecb..1dd051e0 100644
--- a/netlify.toml
+++ b/netlify.toml
@@ -4,6 +4,7 @@
[build]
command = "npm run build"
publish = "_site"
+ edge_functions = "api"
###
# URLs
diff --git a/package.json b/package.json
index cc68518e..5462d76d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "coryd.dev",
- "version": "6.8.0",
+ "version": "6.9.0",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module",
"scripts": {