feat: edge funcs -> api; cache things
This commit is contained in:
parent
f844fe5e04
commit
471ec18dd7
3 changed files with 7 additions and 10 deletions
|
@ -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: `📺 <a href="https://trakt.tv/shows/${traktRes["show"]["ids"]["slug"]}">${traktRes["show"]["title"]}</a> • <a href="https://trakt.tv/shows/${traktRes["show"]["ids"]["slug"]}/seasons/${traktRes["episode"]["season"]}/episodes/${traktRes["episode"]["number"]}">${traktRes["episode"]["title"]}</a>`,
|
||||
},
|
||||
headers
|
||||
{...headers}
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -96,7 +92,7 @@ export default async () => {
|
|||
{
|
||||
content: `🎥 <a href="https://trakt.tv/movies/${traktRes["movie"]["ids"]["slug"]}">${traktRes["movie"]["title"]}</a>`,
|
||||
},
|
||||
headers
|
||||
{...headers}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -167,7 +163,7 @@ export default async () => {
|
|||
track["artist"]["#text"]
|
||||
}</a>`,
|
||||
},
|
||||
headers
|
||||
{...headers}
|
||||
);
|
||||
};
|
||||
|
|
@ -4,6 +4,7 @@
|
|||
[build]
|
||||
command = "npm run build"
|
||||
publish = "_site"
|
||||
edge_functions = "api"
|
||||
|
||||
###
|
||||
# URLs
|
||||
|
|
|
@ -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": {
|
||||
|
|
Reference in a new issue