mirror of
https://github.com/BradNut/personal-website-sveltekit
synced 2025-09-08 23:20:18 +00:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
|
|
import type { PageServerLoad } from './lib/$types';
|
||
|
|
import { fetchBandcampAlbums } from '$root/lib/util/fetchBandcampAlbums';
|
||
|
|
|
||
|
|
export const load: PageServerLoad = async ({ setHeaders }) => {
|
||
|
|
const albums = await fetchBandcampAlbums();
|
||
|
|
setHeaders({
|
||
|
|
'cache-control': 'max-age=43200'
|
||
|
|
});
|
||
|
|
return {
|
||
|
|
albums
|
||
|
|
};
|
||
|
|
};
|