Edit gitignore file
This commit is contained in:
8
frontend/style/node_modules/next/dist/build/analysis/get-page-static-info.d.ts
generated
vendored
8
frontend/style/node_modules/next/dist/build/analysis/get-page-static-info.d.ts
generated
vendored
@@ -1,8 +1,8 @@
|
||||
import type { NextConfig } from 'next/dist/server/config-shared';
|
||||
import type { RouteHas } from 'next/dist/lib/load-custom-routes';
|
||||
import type { NextConfig } from '../../server/config-shared';
|
||||
import type { RouteHas } from '../../lib/load-custom-routes';
|
||||
import type { ServerRuntime } from 'next/types';
|
||||
import type { RSCMeta } from 'next/dist/build/webpack/loaders/get-module-build-info';
|
||||
import { PAGE_TYPES } from 'next/dist/lib/page-types';
|
||||
import type { RSCMeta } from '../webpack/loaders/get-module-build-info';
|
||||
import { PAGE_TYPES } from '../../lib/page-types';
|
||||
export interface MiddlewareConfigParsed extends Omit<MiddlewareConfig, 'matcher'> {
|
||||
matchers?: MiddlewareMatcher[];
|
||||
}
|
||||
|
||||
12
frontend/style/node_modules/next/dist/build/index.d.ts
generated
vendored
12
frontend/style/node_modules/next/dist/build/index.d.ts
generated
vendored
@@ -1,9 +1,9 @@
|
||||
import type { Revalidate } from 'next/dist/server/lib/revalidate';
|
||||
import 'next/dist/lib/setup-exception-listeners';
|
||||
import { RSC_PREFETCH_SUFFIX, RSC_SUFFIX } from 'next/dist/lib/constants';
|
||||
import type { Header, Redirect, Rewrite, RouteHas } from 'next/dist/lib/load-custom-routes';
|
||||
import type { __ApiPreviewProps } from 'next/dist/server/api-utils';
|
||||
import { NEXT_ROUTER_PREFETCH_HEADER, RSC_HEADER, NEXT_DID_POSTPONE_HEADER } from 'next/dist/client/components/app-router-headers';
|
||||
import type { Revalidate } from '../server/lib/revalidate';
|
||||
import '../lib/setup-exception-listeners';
|
||||
import { RSC_PREFETCH_SUFFIX, RSC_SUFFIX } from '../lib/constants';
|
||||
import type { Header, Redirect, Rewrite, RouteHas } from '../lib/load-custom-routes';
|
||||
import type { __ApiPreviewProps } from '../server/api-utils';
|
||||
import { NEXT_ROUTER_PREFETCH_HEADER, RSC_HEADER, NEXT_DID_POSTPONE_HEADER } from '../client/components/app-router-headers';
|
||||
interface ExperimentalBypassForInfo {
|
||||
experimentalBypassFor?: RouteHas[];
|
||||
}
|
||||
|
||||
2
frontend/style/node_modules/next/dist/build/load-jsconfig.d.ts
generated
vendored
2
frontend/style/node_modules/next/dist/build/load-jsconfig.d.ts
generated
vendored
@@ -1,4 +1,4 @@
|
||||
import type { NextConfigComplete } from 'next/dist/server/config-shared';
|
||||
import type { NextConfigComplete } from '../server/config-shared';
|
||||
export type ResolvedBaseUrl = {
|
||||
baseUrl: string;
|
||||
isImplicit: boolean;
|
||||
|
||||
6
frontend/style/node_modules/next/dist/build/swc/index.d.ts
generated
vendored
6
frontend/style/node_modules/next/dist/build/swc/index.d.ts
generated
vendored
@@ -1,6 +1,6 @@
|
||||
import type { NextConfigComplete } from 'next/dist/server/config-shared';
|
||||
import type { DefineEnvPluginOptions } from 'next/dist/build/webpack/plugins/define-env-plugin';
|
||||
import type { __ApiPreviewProps } from 'next/dist/server/api-utils';
|
||||
import type { NextConfigComplete } from '../../server/config-shared';
|
||||
import type { DefineEnvPluginOptions } from '../webpack/plugins/define-env-plugin';
|
||||
import type { __ApiPreviewProps } from '../../server/api-utils';
|
||||
/**
|
||||
* Based on napi-rs's target triples, returns triples that have corresponding next-swc binaries.
|
||||
*/
|
||||
|
||||
6
frontend/style/node_modules/next/dist/build/templates/app-page.d.ts
generated
vendored
6
frontend/style/node_modules/next/dist/build/templates/app-page.d.ts
generated
vendored
@@ -1,5 +1,5 @@
|
||||
import type { LoaderTree } from 'next/dist/server/lib/app-dir-module';
|
||||
import { AppPageRouteModule } from 'next/dist/server/future/route-modules/app-page/module.compiled';
|
||||
import type { LoaderTree } from '../../server/lib/app-dir-module';
|
||||
import { AppPageRouteModule } from '../../server/future/route-modules/app-page/module.compiled';
|
||||
/**
|
||||
* The tree created in next-app-loader that holds component segments and modules
|
||||
* and I've updated it.
|
||||
@@ -13,5 +13,5 @@ export declare const __next_app__: {
|
||||
require: any;
|
||||
loadChunk: any;
|
||||
};
|
||||
export * from 'next/dist/server/app-render/entry-base';
|
||||
export * from '../../server/app-render/entry-base';
|
||||
export declare const routeModule: AppPageRouteModule;
|
||||
|
||||
2
frontend/style/node_modules/next/dist/build/templates/pages.d.ts
generated
vendored
2
frontend/style/node_modules/next/dist/build/templates/pages.d.ts
generated
vendored
@@ -1,4 +1,4 @@
|
||||
import { PagesRouteModule } from 'next/dist/server/future/route-modules/pages/module.compiled';
|
||||
import { PagesRouteModule } from '../../server/future/route-modules/pages/module.compiled';
|
||||
declare const _default: any;
|
||||
export default _default;
|
||||
export declare const getStaticProps: any;
|
||||
|
||||
16
frontend/style/node_modules/next/dist/build/webpack-config.d.ts
generated
vendored
16
frontend/style/node_modules/next/dist/build/webpack-config.d.ts
generated
vendored
@@ -1,10 +1,10 @@
|
||||
import { webpack } from 'next/dist/compiled/webpack/webpack';
|
||||
import type { CustomRoutes } from 'next/dist/lib/load-custom-routes.js';
|
||||
import type { CompilerNameValues } from 'next/dist/shared/lib/constants.js';
|
||||
import type { NextConfigComplete } from 'next/dist/server/config-shared.js';
|
||||
import type { Span } from 'next/dist/trace/index.js';
|
||||
import type { MiddlewareMatcher } from 'next/dist/build/analysis/get-page-static-info.js';
|
||||
import { type JsConfig, type ResolvedBaseUrl } from 'next/dist/build/load-jsconfig.js';
|
||||
import type { CustomRoutes } from '../lib/load-custom-routes.js';
|
||||
import type { CompilerNameValues } from '../shared/lib/constants';
|
||||
import type { NextConfigComplete } from '../server/config-shared';
|
||||
import type { Span } from '../trace';
|
||||
import type { MiddlewareMatcher } from './analysis/get-page-static-info';
|
||||
import { type JsConfig, type ResolvedBaseUrl } from './load-jsconfig';
|
||||
export declare const NEXT_PROJECT_ROOT: string;
|
||||
export declare const NEXT_PROJECT_ROOT_DIST: string;
|
||||
export declare const babelIncludeRegexes: RegExp[];
|
||||
@@ -121,8 +121,8 @@ export default function getBaseWebpackConfig(dir: string, { buildId, encryptionK
|
||||
supportedBrowsers: string[] | undefined;
|
||||
edgePreviewProps?: Record<string, string>;
|
||||
clientRouterFilters?: {
|
||||
staticFilter: ReturnType<import('next/dist/shared/lib/bloom-filter.js').BloomFilter['export']>;
|
||||
dynamicFilter: ReturnType<import('next/dist/shared/lib/bloom-filter.js').BloomFilter['export']>;
|
||||
staticFilter: ReturnType<import('../shared/lib/bloom-filter').BloomFilter['export']>;
|
||||
dynamicFilter: ReturnType<import('../shared/lib/bloom-filter').BloomFilter['export']>;
|
||||
};
|
||||
fetchCacheKeyPrefix?: string;
|
||||
}): Promise<webpack.Configuration>;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { MiddlewareConfig, MiddlewareMatcher, RSCModuleType } from 'next/dist/build/analysis/get-page-static-info';
|
||||
import type { MiddlewareConfig, MiddlewareMatcher, RSCModuleType } from '../../analysis/get-page-static-info';
|
||||
import type { webpack } from 'next/dist/compiled/webpack/webpack';
|
||||
export type ModuleBuildInfo = {
|
||||
nextEdgeMiddleware?: EdgeMiddlewareMeta;
|
||||
|
||||
8
frontend/style/node_modules/next/dist/build/webpack/loaders/next-app-loader.d.ts
generated
vendored
8
frontend/style/node_modules/next/dist/build/webpack/loaders/next-app-loader.d.ts
generated
vendored
@@ -1,8 +1,8 @@
|
||||
import type webpack from 'next/dist/compiled/webpack/webpack';
|
||||
import { type ValueOf } from 'next/dist/shared/lib/constants';
|
||||
import type { ModuleReference, CollectedMetadata } from 'next/dist/build/webpack/loaders/metadata/types';
|
||||
import type { NextConfig } from 'next/dist/server/config-shared';
|
||||
import type { PageExtensions } from 'next/dist/build/page-extensions-type';
|
||||
import { type ValueOf } from '../../../shared/lib/constants';
|
||||
import type { ModuleReference, CollectedMetadata } from './metadata/types';
|
||||
import type { NextConfig } from '../../../server/config-shared';
|
||||
import type { PageExtensions } from '../../page-extensions-type';
|
||||
export type AppLoaderOptions = {
|
||||
name: string;
|
||||
page: string;
|
||||
|
||||
6
frontend/style/node_modules/next/dist/build/webpack/plugins/define-env-plugin.d.ts
generated
vendored
6
frontend/style/node_modules/next/dist/build/webpack/plugins/define-env-plugin.d.ts
generated
vendored
@@ -1,7 +1,7 @@
|
||||
import type { NextConfigComplete } from 'next/dist/server/config-shared';
|
||||
import type { MiddlewareMatcher } from 'next/dist/build/analysis/get-page-static-info';
|
||||
import type { NextConfigComplete } from '../../../server/config-shared';
|
||||
import type { MiddlewareMatcher } from '../../analysis/get-page-static-info';
|
||||
import { webpack } from 'next/dist/compiled/webpack/webpack';
|
||||
type BloomFilter = ReturnType<import('next/dist/shared/lib/bloom-filter').BloomFilter['export']>;
|
||||
type BloomFilter = ReturnType<import('../../../shared/lib/bloom-filter').BloomFilter['export']>;
|
||||
export interface DefineEnvPluginOptions {
|
||||
isTurbopack: boolean;
|
||||
clientRouterFilters?: {
|
||||
|
||||
6
frontend/style/node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts
generated
vendored
6
frontend/style/node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts
generated
vendored
@@ -1,7 +1,7 @@
|
||||
import type { AssetBinding } from 'next/dist/build/webpack/loaders/get-module-build-info';
|
||||
import type { MiddlewareMatcher } from 'next/dist/build/analysis/get-page-static-info';
|
||||
import type { AssetBinding } from '../loaders/get-module-build-info';
|
||||
import type { MiddlewareMatcher } from '../../analysis/get-page-static-info';
|
||||
import { webpack } from 'next/dist/compiled/webpack/webpack';
|
||||
import type { CustomRoutes } from 'next/dist/lib/load-custom-routes';
|
||||
import type { CustomRoutes } from '../../../lib/load-custom-routes';
|
||||
export interface EdgeFunctionDefinition {
|
||||
files: string[];
|
||||
name: string;
|
||||
|
||||
Reference in New Issue
Block a user