replace icons, improve music

This commit is contained in:
Aidan 2025-01-08 09:33:27 -05:00
parent b88c258896
commit 2011d7a83e
7 changed files with 128 additions and 67 deletions

View file

@ -2,8 +2,28 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
domains: ['lastfm.freetls.fastly.net', 'p0ntus.com', 'github-readme-stats.vercel.app'],
remotePatterns: [
{
protocol: 'https',
hostname: 'lastfm.freetls.fastly.net',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'p0ntus.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'github-readme-stats.vercel.app',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;
export default nextConfig;