feat: independent cdn
This commit is contained in:
parent
152f7f89d3
commit
38cca61033
25 changed files with 125 additions and 123 deletions
|
@ -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
|
||||
|
|
Reference in a new issue