diff --git a/packages/ionic/src/commands/deploy/manifest.ts b/packages/ionic/src/commands/deploy/manifest.ts index 110c2828ed..6a32e4e1bf 100644 --- a/packages/ionic/src/commands/deploy/manifest.ts +++ b/packages/ionic/src/commands/deploy/manifest.ts @@ -42,7 +42,7 @@ export class DeployManifestCommand extends Command { const items = await Promise.all(files.map(([f, stat]) => this.getFileAndSizeAndHashForFile(buildDir, f, stat))); - return items; + return items.filter(item => item.href !== 'pro-manifest.json'); } private async getFileAndSizeAndHashForFile(buildDir: string, file: string, stat: fs.Stats): Promise {