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

@@ -1,14 +1,14 @@
/// <reference types="node" />
/// <reference types="node" />
import type { HtmlProps } from 'next/dist/shared/lib/html-context.shared-runtime';
import type { HtmlProps } from './html-context.shared-runtime';
import type { ComponentType } from 'react';
import type { DomainLocale } from 'next/dist/server/config';
import type { DomainLocale } from '../../server/config';
import type { Env } from '@next/env';
import type { IncomingMessage, ServerResponse } from 'http';
import type { NextRouter } from 'next/dist/shared/lib/router/router';
import type { NextRouter } from './router/router';
import type { ParsedUrlQuery } from 'querystring';
import type { PreviewData } from 'next/types';
import type { COMPILER_NAMES } from 'next/dist/shared/lib/constants';
import type { COMPILER_NAMES } from './constants';
import type fs from 'fs';
export type NextComponentType<Context extends BaseContext = NextPageContext, InitialProps = {}, Props = {}> = ComponentType<Props> & {
/**