generate static comments

This commit is contained in:
Николай Полтщук 2025-01-13 22:16:12 +03:00
parent ad5d841b5d
commit ae26c4c8f7
3 changed files with 25 additions and 25 deletions

View File

@ -5,18 +5,18 @@ import InfoItem from "@/components/info-item";
import HumanCard from "@/components/human-card";
import SocialItem from "@/components/social-item";
export async function generateStaticParams() {
// Моканные данные мероприятий
const events = [
{ slug: 'event-1' },
{ slug: 'event-2' },
{ slug: 'event-3' },
];
return events.map(event => ({
slug: event.slug,
}));
}
// export async function generateStaticParams() {
// // Моканные данные мероприятий
// const events = [
// { slug: 'event-1' },
// { slug: 'event-2' },
// { slug: 'event-3' },
// ];
//
// return events.map(event => ({
// slug: event.slug,
// }));
// }
export default function Page() {
const infoItems = [

View File

@ -5,18 +5,18 @@ import InfoItem from "@/components/info-item";
import Image from "next/image";
import SocialItem from "@/components/social-item";
export async function generateStaticParams() {
// Моканные данные участников
const participants = [
{ slug: '1' },
{ slug: '2' },
{ slug: '3' },
];
return participants.map(participant => ({
slug: participant.slug,
}));
}
// export async function generateStaticParams() {
// // Моканные данные участников
// const participants = [
// { slug: '1' },
// { slug: '2' },
// { slug: '3' },
// ];
//
// return participants.map(participant => ({
// slug: participant.slug,
// }));
// }
export default function Page() {
return(

View File

@ -1,7 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'export'
// output: 'export'
};
export default nextConfig;