bpms_site/.svn/pristine/3f/3f8508d3098a608e486ff6d4bf067c8705764448.svn-base
2025-11-02 16:38:49 +03:30

22 lines
870 B
Plaintext

import type { CustomRoutes } from '../../../lib/load-custom-routes';
import { webpack } from 'next/dist/compiled/webpack/webpack';
export type ClientBuildManifest = Record<string, string[]>;
export declare const srcEmptySsgManifest = "self.__SSG_MANIFEST=new Set;self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()";
export declare function getEntrypointFiles(entrypoint: any): string[];
export default class BuildManifestPlugin {
private buildId;
private rewrites;
private isDevFallback;
private exportRuntime;
private appDirEnabled;
constructor(options: {
buildId: string;
rewrites: CustomRoutes['rewrites'];
isDevFallback?: boolean;
exportRuntime?: boolean;
appDirEnabled: boolean;
});
createAssets(compiler: any, compilation: any, assets: any): any;
apply(compiler: webpack.Compiler): void;
}