Skip to content

Commit

Permalink
fix: metadata에 metadataBase url 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hanyugeon committed Jul 30, 2024
1 parent 9b15f59 commit f1e926b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { Metadata } from 'next';

import { appleSplashScreens } from '@/constants/metadata';
import { DEPLOYMENT_URL } from '@/constants/url';

import GoogleAnalytics from '@/components/common/GoogleAnalytics';
import AuthFailedErrorBoundary from '@/components/common/AuthFailedErrorBoundary';
Expand All @@ -14,7 +15,7 @@ import { LineSeedKR } from '@/styles/font';
import '@/styles/global.css';

export const metadata: Metadata = {
metadataBase: new URL(`${process.env.NEXT_HOST}`),
metadataBase: new URL(`${DEPLOYMENT_URL}`),
title: {
template: '%s | 다독다독',
default: '다독다독',
Expand Down

0 comments on commit f1e926b

Please sign in to comment.