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,6 +1,6 @@
import React from 'react';
import type { AppContextType, AppInitialProps, AppPropsType, NextWebVitalsMetric, AppType } from 'next/dist/shared/lib/utils';
import type { Router } from 'next/dist/client/router';
import type { AppContextType, AppInitialProps, AppPropsType, NextWebVitalsMetric, AppType } from '../shared/lib/utils';
import type { Router } from '../client/router';
export type { AppInitialProps, AppType };
export type { NextWebVitalsMetric };
export type AppContext = AppContextType<Router>;

View File

@@ -1,7 +1,7 @@
import React from 'react';
import type { ReactNode } from 'react';
import type { DocumentContext, DocumentInitialProps, DocumentProps } from 'next/dist/shared/lib/utils';
import type { HtmlProps } from 'next/dist/shared/lib/html-context.shared-runtime';
import type { DocumentContext, DocumentInitialProps, DocumentProps } from '../shared/lib/utils';
import type { HtmlProps } from '../shared/lib/html-context.shared-runtime';
export type { DocumentContext, DocumentInitialProps, DocumentProps };
export type OriginProps = {
nonce?: string;

View File

@@ -1,5 +1,5 @@
import React from 'react';
import type { NextPageContext } from 'next/dist/shared/lib/utils';
import type { NextPageContext } from '../shared/lib/utils';
export type ErrorProps = {
statusCode: number;
title?: string;