File size: 370 Bytes
fea495a
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import type webpack from 'webpack';
export type EdgeFunctionLoaderOptions = {
    absolutePagePath: string;
    page: string;
    rootDir: string;
    preferredRegion: string | string[] | undefined;
    middlewareConfig: string;
};
declare const nextEdgeFunctionLoader: webpack.LoaderDefinitionFunction<EdgeFunctionLoaderOptions>;
export default nextEdgeFunctionLoader;