Skip to content

Commit 9980711

Browse files
fix(frontend): added missing domain for images
1 parent a1eb7ea commit 9980711

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

apps/frontend/next.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ const nextConfig: NextConfig = {
2222
protocol: 'https',
2323
hostname: 'avatars.githubusercontent.com',
2424
},
25+
{
26+
protocol: 'https',
27+
hostname: 'raw.githubusercontent.com',
28+
},
2529
],
2630
},
2731
sassOptions: {

apps/frontend/src/app/[locale]/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { Analytics } from '@vercel/analytics/react';
12
import { SessionProvider } from 'next-auth/react';
23
import { setRequestLocale } from 'next-intl/server';
34
import { Inter } from 'next/font/google';
@@ -13,7 +14,6 @@ import { routing } from '@/i18n';
1314
import { GlobalProvider } from '@/providers/GlobalProvider';
1415

1516
import '@/styles/global.scss';
16-
import { Analytics } from '@vercel/analytics/react'
1717

1818
const inter = Inter({
1919
subsets: ['latin-ext'],

0 commit comments

Comments
 (0)