feat: independent cdn

This commit is contained in:
Cory Dransfeldt 2024-06-07 10:56:50 -07:00
parent 152f7f89d3
commit 38cca61033
No known key found for this signature in database
25 changed files with 125 additions and 123 deletions

View file

@ -45,7 +45,7 @@ export default async (request) => {
const { error: insertArtistError } = await supabase.from('artists').insert([
{
mbid: null,
image: `https://coryd.dev/media/artists/${artistKey}.jpg`,
image: `/artists/${artistKey}.jpg`,
key: artistKey,
name: artist,
tentative: true
@ -77,7 +77,7 @@ export default async (request) => {
const { error: insertAlbumError } = await supabase.from('albums').insert([
{
mbid: null,
image: `https://coryd.dev/media/albums/${albumKey}.jpg`,
image: `/albums/${albumKey}.jpg`,
key: albumKey,
name: album,
tentative: true