Initial boiler plate project
This commit is contained in:
26
node_modules/next/dist/build/webpack/loaders/next-edge-ssr-loader/index.d.ts
generated
vendored
Normal file
26
node_modules/next/dist/build/webpack/loaders/next-edge-ssr-loader/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
import type webpack from 'webpack';
|
||||
import type { SizeLimit } from '../../../../../types';
|
||||
import type { PAGE_TYPES } from '../../../../lib/page-types';
|
||||
export type EdgeSSRLoaderQuery = {
|
||||
absolute500Path: string;
|
||||
absoluteAppPath: string;
|
||||
absoluteDocumentPath: string;
|
||||
absoluteErrorPath: string;
|
||||
absolutePagePath: string;
|
||||
dev: boolean;
|
||||
isServerComponent: boolean;
|
||||
page: string;
|
||||
stringifiedConfig: string;
|
||||
appDirLoader?: string;
|
||||
pagesType: PAGE_TYPES;
|
||||
sriEnabled: boolean;
|
||||
cacheHandler?: string;
|
||||
preferredRegion: string | string[] | undefined;
|
||||
middlewareConfig: string;
|
||||
serverActions?: {
|
||||
bodySizeLimit?: SizeLimit;
|
||||
allowedOrigins?: string[];
|
||||
};
|
||||
};
|
||||
declare const edgeSSRLoader: webpack.LoaderDefinitionFunction<EdgeSSRLoaderQuery>;
|
||||
export default edgeSSRLoader;
|
||||
Reference in New Issue
Block a user