bpms_site/.svn/pristine/d1/d18c54a40e2e1659b7b35695c98961a229482db5.svn-base
2025-11-02 16:38:49 +03:30

21 lines
701 B
Plaintext

import { webpack } from 'next/dist/compiled/webpack/webpack';
export type PagesManifest = {
[page: string]: string;
};
export declare let edgeServerPages: {};
export declare let nodeServerPages: {};
export declare let edgeServerAppPaths: {};
export declare let nodeServerAppPaths: {};
export default class PagesManifestPlugin implements webpack.WebpackPluginInstance {
dev: boolean;
isEdgeRuntime: boolean;
appDirEnabled: boolean;
constructor({ dev, isEdgeRuntime, appDirEnabled, }: {
dev: boolean;
isEdgeRuntime: boolean;
appDirEnabled: boolean;
});
createAssets(compilation: any, assets: any): void;
apply(compiler: webpack.Compiler): void;
}