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,11 +1,11 @@
import type { webpack } from 'next/dist/compiled/webpack/webpack';
import type { Header, Redirect, Rewrite } from 'next/dist/lib/load-custom-routes';
import type { ImageConfig, ImageConfigComplete } from 'next/dist/shared/lib/image-config';
import type { SubresourceIntegrityAlgorithm } from 'next/dist/build/webpack/plugins/subresource-integrity-plugin';
import type { WEB_VITALS } from 'next/dist/shared/lib/utils';
import type { NextParsedUrlQuery } from 'next/dist/server/request-meta';
import type { SizeLimit } from 'next/types';
import type { SwrDelta } from 'next/dist/server/lib/revalidate';
import type { Header, Redirect, Rewrite } from '../lib/load-custom-routes';
import type { ImageConfig, ImageConfigComplete } from '../shared/lib/image-config';
import type { SubresourceIntegrityAlgorithm } from '../build/webpack/plugins/subresource-integrity-plugin';
import type { WEB_VITALS } from '../shared/lib/utils';
import type { NextParsedUrlQuery } from './request-meta';
import type { SizeLimit } from '../../types';
import type { SwrDelta } from './lib/revalidate';
export type NextConfigComplete = Required<NextConfig> & {
images: Required<ImageConfigComplete>;
typescript: Required<TypeScriptConfig>;