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,12 +1,12 @@
/// <reference types="node" />
import type { Options as DevServerOptions } from 'next/dist/server/dev/next-dev-server';
import type { Options as ServerOptions } from 'next/dist/server/next-server';
import type { NextConfigComplete } from 'next/dist/server/config-shared';
import type { Options as DevServerOptions } from './dev/next-dev-server';
import type { Options as ServerOptions } from './next-server';
import type { NextConfigComplete } from './config-shared';
import type { IncomingMessage, ServerResponse } from 'http';
import type { NextUrlWithParsedQuery } from 'next/dist/server/request-meta';
import 'next/dist/server/require-hook';
import 'next/dist/server/node-polyfill-crypto';
import type { default as Server } from 'next/dist/server/next-server';
import type { NextUrlWithParsedQuery } from './request-meta';
import './require-hook';
import './node-polyfill-crypto';
import type { default as Server } from './next-server';
export type NextServerOptions = Omit<ServerOptions | DevServerOptions, 'conf'> & Partial<Pick<ServerOptions | DevServerOptions, 'conf'>> & {
preloadedConfig?: NextConfigComplete;
internal_setStandaloneConfig?: boolean;