Files
aletheia/frontend/node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts
bigtux 20a26affaa 📚 Documentação inicial do ALETHEIA
- MANUAL-PRODUTO.md: Manual do usuário final
- MANUAL-VENDAS.md: Estratégia comercial e vendas
- MANUAL-TECNICO.md: Infraestrutura e deploy
- README.md: Visão geral do projeto
2026-02-10 15:08:15 -03:00

23 lines
767 B
TypeScript

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;
distDir?: string;
isEdgeRuntime: boolean;
appDirEnabled: boolean;
constructor({ dev, distDir, isEdgeRuntime, appDirEnabled, }: {
dev: boolean;
distDir?: string;
isEdgeRuntime: boolean;
appDirEnabled: boolean;
});
createAssets(compilation: any, assets: any): Promise<void>;
apply(compiler: webpack.Compiler): void;
}