From 0463576d88661db0490c32338291933737355b99 Mon Sep 17 00:00:00 2001 From: Rushil Srivastava Date: Mon, 24 Jan 2022 05:21:31 -0800 Subject: [PATCH] :goal_net: Specify missing output.filename in Error Message Ref #91 --- src/utils/manifest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/manifest.ts b/src/utils/manifest.ts index 071b3d42..b3ed89f2 100644 --- a/src/utils/manifest.ts +++ b/src/utils/manifest.ts @@ -13,7 +13,7 @@ export function extractEntries( const { filename } = webpackOutput; if (!filename) { - throw new Error(); + throw new Error("Please specify the `output.filename` in your webpack config."); } if (!background?.scripts) {