Edit gitignore file
This commit is contained in:
@@ -1 +1 @@
|
||||
export * from 'next/dist/server/future/route-modules/app-page/module'
|
||||
export * from './module'
|
||||
|
||||
18
frontend/style/node_modules/next/dist/server/future/route-modules/app-page/module.d.ts
generated
vendored
18
frontend/style/node_modules/next/dist/server/future/route-modules/app-page/module.d.ts
generated
vendored
@@ -1,18 +1,18 @@
|
||||
/// <reference types="node" />
|
||||
import type { IncomingMessage, ServerResponse } from 'http';
|
||||
import type { AppPageRouteDefinition } from 'next/dist/server/future/route-definitions/app-page-route-definition';
|
||||
import type RenderResult from 'next/dist/server/render-result';
|
||||
import type { RenderOpts } from 'next/dist/server/app-render/types';
|
||||
import type { NextParsedUrlQuery } from 'next/dist/server/request-meta';
|
||||
import type { LoaderTree } from 'next/dist/server/lib/app-dir-module';
|
||||
import { renderToHTMLOrFlight } from 'next/dist/server/app-render/app-render';
|
||||
import { RouteModule, type RouteModuleOptions, type RouteModuleHandleContext } from 'next/dist/server/future/route-modules/route-module';
|
||||
import * as vendoredContexts from 'next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints';
|
||||
import type { AppPageRouteDefinition } from '../../route-definitions/app-page-route-definition';
|
||||
import type RenderResult from '../../../render-result';
|
||||
import type { RenderOpts } from '../../../app-render/types';
|
||||
import type { NextParsedUrlQuery } from '../../../request-meta';
|
||||
import type { LoaderTree } from '../../../lib/app-dir-module';
|
||||
import { renderToHTMLOrFlight } from '../../../app-render/app-render';
|
||||
import { RouteModule, type RouteModuleOptions, type RouteModuleHandleContext } from '../route-module';
|
||||
import * as vendoredContexts from './vendored/contexts/entrypoints';
|
||||
/**
|
||||
* The AppPageModule is the type of the module exported by the bundled app page
|
||||
* module.
|
||||
*/
|
||||
export type AppPageModule = typeof import('next/dist/build/templates/app-page');
|
||||
export type AppPageModule = typeof import('../../../../build/templates/app-page');
|
||||
type AppPageUserlandModule = {
|
||||
/**
|
||||
* The tree created in next-app-loader that holds component segments and modules
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
export * as HeadManagerContext from 'next/dist/shared/lib/head-manager-context.shared-runtime';
|
||||
export * as ServerInsertedHtml from 'next/dist/shared/lib/server-inserted-html.shared-runtime';
|
||||
export * as AppRouterContext from 'next/dist/shared/lib/app-router-context.shared-runtime';
|
||||
export * as HooksClientContext from 'next/dist/shared/lib/hooks-client-context.shared-runtime';
|
||||
export * as RouterContext from 'next/dist/shared/lib/router-context.shared-runtime';
|
||||
export * as HtmlContext from 'next/dist/shared/lib/html-context.shared-runtime';
|
||||
export * as AmpContext from 'next/dist/shared/lib/amp-context.shared-runtime';
|
||||
export * as LoadableContext from 'next/dist/shared/lib/loadable-context.shared-runtime';
|
||||
export * as ImageConfigContext from 'next/dist/shared/lib/image-config-context.shared-runtime';
|
||||
export * as Loadable from 'next/dist/shared/lib/loadable.shared-runtime';
|
||||
export * as HeadManagerContext from '../../../../../../shared/lib/head-manager-context.shared-runtime';
|
||||
export * as ServerInsertedHtml from '../../../../../../shared/lib/server-inserted-html.shared-runtime';
|
||||
export * as AppRouterContext from '../../../../../../shared/lib/app-router-context.shared-runtime';
|
||||
export * as HooksClientContext from '../../../../../../shared/lib/hooks-client-context.shared-runtime';
|
||||
export * as RouterContext from '../../../../../../shared/lib/router-context.shared-runtime';
|
||||
export * as HtmlContext from '../../../../../../shared/lib/html-context.shared-runtime';
|
||||
export * as AmpContext from '../../../../../../shared/lib/amp-context.shared-runtime';
|
||||
export * as LoadableContext from '../../../../../../shared/lib/loadable-context.shared-runtime';
|
||||
export * as ImageConfigContext from '../../../../../../shared/lib/image-config-context.shared-runtime';
|
||||
export * as Loadable from '../../../../../../shared/lib/loadable.shared-runtime';
|
||||
|
||||
@@ -1 +1 @@
|
||||
export * from 'next/dist/server/future/route-modules/pages/module'
|
||||
export * from './module'
|
||||
|
||||
20
frontend/style/node_modules/next/dist/server/future/route-modules/pages/module.d.ts
generated
vendored
20
frontend/style/node_modules/next/dist/server/future/route-modules/pages/module.d.ts
generated
vendored
@@ -1,19 +1,19 @@
|
||||
/// <reference types="node" />
|
||||
import type { IncomingMessage, ServerResponse } from 'http';
|
||||
import type { GetServerSideProps, GetStaticPaths, GetStaticProps, NextComponentType, PageConfig } from 'next/types';
|
||||
import type { PagesRouteDefinition } from 'next/dist/server/future/route-definitions/pages-route-definition';
|
||||
import type { NextParsedUrlQuery } from 'next/dist/server/request-meta';
|
||||
import type { RenderOpts } from 'next/dist/server/render';
|
||||
import type RenderResult from 'next/dist/server/render-result';
|
||||
import type { AppType, DocumentType } from 'next/dist/shared/lib/utils';
|
||||
import { RouteModule, type RouteModuleHandleContext, type RouteModuleOptions } from 'next/dist/server/future/route-modules/route-module';
|
||||
import { renderToHTML } from 'next/dist/server/render';
|
||||
import * as vendoredContexts from 'next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints';
|
||||
import type { GetServerSideProps, GetStaticPaths, GetStaticProps, NextComponentType, PageConfig } from '../../../../../types';
|
||||
import type { PagesRouteDefinition } from '../../route-definitions/pages-route-definition';
|
||||
import type { NextParsedUrlQuery } from '../../../request-meta';
|
||||
import type { RenderOpts } from '../../../render';
|
||||
import type RenderResult from '../../../render-result';
|
||||
import type { AppType, DocumentType } from '../../../../shared/lib/utils';
|
||||
import { RouteModule, type RouteModuleHandleContext, type RouteModuleOptions } from '../route-module';
|
||||
import { renderToHTML } from '../../../render';
|
||||
import * as vendoredContexts from './vendored/contexts/entrypoints';
|
||||
/**
|
||||
* The PagesModule is the type of the module exported by the bundled pages
|
||||
* module.
|
||||
*/
|
||||
export type PagesModule = typeof import('next/dist/build/templates/pages');
|
||||
export type PagesModule = typeof import('../../../../build/templates/pages');
|
||||
/**
|
||||
* The userland module for a page. This is the module that is exported from the
|
||||
* page file that contains the page component, page config, and any page data
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
export * as RouterContext from 'next/dist/shared/lib/router-context.shared-runtime';
|
||||
export * as LoadableContext from 'next/dist/shared/lib/loadable-context.shared-runtime';
|
||||
export * as Loadable from 'next/dist/shared/lib/loadable.shared-runtime';
|
||||
export * as ImageConfigContext from 'next/dist/shared/lib/image-config-context.shared-runtime';
|
||||
export * as HtmlContext from 'next/dist/shared/lib/html-context.shared-runtime';
|
||||
export * as HooksClientContext from 'next/dist/shared/lib/hooks-client-context.shared-runtime';
|
||||
export * as HeadManagerContext from 'next/dist/shared/lib/head-manager-context.shared-runtime';
|
||||
export * as AppRouterContext from 'next/dist/shared/lib/app-router-context.shared-runtime';
|
||||
export * as AmpContext from 'next/dist/shared/lib/amp-context.shared-runtime';
|
||||
export * as ServerInsertedHtml from 'next/dist/shared/lib/server-inserted-html.shared-runtime';
|
||||
export * as RouterContext from '../../../../../../shared/lib/router-context.shared-runtime';
|
||||
export * as LoadableContext from '../../../../../../shared/lib/loadable-context.shared-runtime';
|
||||
export * as Loadable from '../../../../../../shared/lib/loadable.shared-runtime';
|
||||
export * as ImageConfigContext from '../../../../../../shared/lib/image-config-context.shared-runtime';
|
||||
export * as HtmlContext from '../../../../../../shared/lib/html-context.shared-runtime';
|
||||
export * as HooksClientContext from '../../../../../../shared/lib/hooks-client-context.shared-runtime';
|
||||
export * as HeadManagerContext from '../../../../../../shared/lib/head-manager-context.shared-runtime';
|
||||
export * as AppRouterContext from '../../../../../../shared/lib/app-router-context.shared-runtime';
|
||||
export * as AmpContext from '../../../../../../shared/lib/amp-context.shared-runtime';
|
||||
export * as ServerInsertedHtml from '../../../../../../shared/lib/server-inserted-html.shared-runtime';
|
||||
|
||||
2
frontend/style/node_modules/next/dist/server/future/route-modules/route-module.d.ts
generated
vendored
2
frontend/style/node_modules/next/dist/server/future/route-modules/route-module.d.ts
generated
vendored
@@ -1,4 +1,4 @@
|
||||
import type { RouteDefinition } from 'next/dist/server/future/route-definitions/route-definition';
|
||||
import type { RouteDefinition } from '../route-definitions/route-definition';
|
||||
/**
|
||||
* RouteModuleOptions is the options that are passed to the route module, other
|
||||
* route modules should extend this class to add specific options for their
|
||||
|
||||
Reference in New Issue
Block a user