From c16f8a628ae30470356f0187828f7956547b87fb Mon Sep 17 00:00:00 2001 From: cha0s Date: Mon, 14 Dec 2020 15:58:13 -0600 Subject: [PATCH] fix:a rgs --- packages/http/src/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/http/src/index.js b/packages/http/src/index.js index 2d87edb..409232a 100644 --- a/packages/http/src/index.js +++ b/packages/http/src/index.js @@ -34,10 +34,10 @@ export default { client.use.push((neutrino) => { neutrino.config .plugin('html-index') - .tap((args) => ({ - ...args, + .tap(([options]) => [{ + ...options, title, - })); + }]); }); // eslint-disable-next-line no-param-reassign configs.client = client;