wilddragon-site/node_modules/next/dist/build/webpack/loaders/next-edge-function-loader.d.ts
2026-04-17 15:51:01 -04:00

11 lines
397 B
TypeScript
Executable file

import type webpack from 'webpack';
export type EdgeFunctionLoaderOptions = {
absolutePagePath: string;
page: string;
rootDir: string;
preferredRegion: string | string[] | undefined;
middlewareConfig: string;
cacheHandler?: string;
};
declare const nextEdgeFunctionLoader: webpack.LoaderDefinitionFunction<EdgeFunctionLoaderOptions>;
export default nextEdgeFunctionLoader;