Skip to content

Commit

Permalink
Merge pull request #59 from GDSC-DGU/dev
Browse files Browse the repository at this point in the history
deploy 2차
  • Loading branch information
seochan99 authored May 16, 2024
2 parents a9dc730 + 68ede55 commit 11b3c69
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 11b3c69

Please sign in to comment.