Merge pull request #326 from KarthikRaju391/discord-credentials

Use Discord Credentials when available
This commit is contained in:
Keith Stevens
2023-01-05 17:25:50 +09:00
committed by GitHub
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -2,6 +2,14 @@
const nextConfig = {
output: "standalone",
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**.discordapp.com",
},
],
},
experimental: {
/* Disabling this for now only because it causes a warning in the console that cannot be silenced for eslint
If this can be resolved, we should re-enable this.
+1 -1
View File
@@ -42,7 +42,7 @@ export function UserMenu() {
className="flex items-center gap-4 p-1 lg:pr-6 rounded-full transition-colors duration-300"
>
<Image
src="/images/temp-avatars/av5.jpg"
src={session.user.image || "/images/temp-avatars/av1.jpg"}
alt="Profile Picture"
width="36"
height="36"