Skip to content

Commit

Permalink
Merge pull request #58 from GDSC-DGU/fix
Browse files Browse the repository at this point in the history
Fix 빌드 문제
  • Loading branch information
seochan99 committed May 16, 2024
2 parents fada833 + f456e70 commit 68ede55
Show file tree
Hide file tree
Showing 6 changed files with 69 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/app/project/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import {
} from '@/hooks/project/notionProjectDataRefactor';
import React from 'react';

export const dynamic = "force-dynamic";

const ProjectDetailPage = async ({ params }: { params: { id: string } }) => {
// 프로젝트 데이터 불러오기
const projectResponse = await fetch(
Expand Down
2 changes: 2 additions & 0 deletions src/app/project/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ export const metadata = {
title: 'Project',
};

export const dynamic = "force-dynamic";

const ProjectPage = async () => {
let projectData = [];

Expand Down
2 changes: 2 additions & 0 deletions src/app/solutionChallenge/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ export const metadata = {
title: 'SolutionChallenge',
};

export const dynamic = "force-dynamic";

const SolutionChallengePage = async () => {
let solutionChallengeData = [];

Expand Down
Loading

0 comments on commit 68ede55

Please sign in to comment.