Edit gitignore file

This commit is contained in:
ParkSuMin
2025-02-24 20:17:54 +03:00
parent 9b16274400
commit d7869378b8
349 changed files with 686 additions and 25860 deletions

View File

@@ -2,21 +2,21 @@
/// <reference types="node" />
import type { IncomingMessage, ServerResponse } from 'http';
import type { ParsedUrlQuery } from 'querystring';
import type { DomainLocale } from 'next/dist/server/config';
import type { AppType, DocumentType } from 'next/dist/shared/lib/utils';
import type { ImageConfigComplete } from 'next/dist/shared/lib/image-config';
import { type __ApiPreviewProps } from 'next/dist/server/api-utils';
import type { FontManifest, FontConfig } from 'next/dist/server/font-utils';
import type { LoadComponentsReturnType } from 'next/dist/server/load-components';
import type { DomainLocale } from './config';
import type { AppType, DocumentType } from '../shared/lib/utils';
import type { ImageConfigComplete } from '../shared/lib/image-config';
import { type __ApiPreviewProps } from './api-utils';
import type { FontManifest, FontConfig } from './font-utils';
import type { LoadComponentsReturnType } from './load-components';
import type { ServerRuntime, SizeLimit } from 'next/types';
import type { ClientReferenceManifest } from 'next/dist/build/webpack/plugins/flight-manifest-plugin';
import type { NextFontManifest } from 'next/dist/build/webpack/plugins/next-font-manifest-plugin';
import type { PagesModule } from 'next/dist/server/future/route-modules/pages/module';
import type { NextParsedUrlQuery } from 'next/dist/server/request-meta';
import type { SwrDelta } from 'next/dist/server/lib/revalidate';
import type { ClientReferenceManifest } from '../build/webpack/plugins/flight-manifest-plugin';
import type { NextFontManifest } from '../build/webpack/plugins/next-font-manifest-plugin';
import type { PagesModule } from './future/route-modules/pages/module';
import type { NextParsedUrlQuery } from './request-meta';
import type { SwrDelta } from './lib/revalidate';
import React from 'react';
import RenderResult from 'next/dist/server/render-result';
import type { DeepReadonly } from 'next/dist/shared/lib/deep-readonly';
import RenderResult from './render-result';
import type { DeepReadonly } from '../shared/lib/deep-readonly';
export type RenderOptsPartial = {
buildId: string;
canonicalBase: string;