From 2482053023b547b2c5b214896c9541aa5382149c Mon Sep 17 00:00:00 2001 From: harrywan Date: Tue, 29 Oct 2024 13:13:06 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DmountElementId?= =?UTF-8?q?=E6=89=BE=E4=B8=8D=E5=88=B0=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/plugins/commands/webpackConfig/html.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/html.js b/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/html.js index 265c39e0..8d27c93f 100644 --- a/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/html.js +++ b/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/html.js @@ -17,8 +17,7 @@ export default async function createHtmlWebpackConfig({ title: 'fes.js', filename: '[name].html', ...config.html, - templateParameters: resolveDefine(config, true), - mountElementId: config.mountElementId + templateParameters: Object.assign(resolveDefine(config, true), { mountElementId: config.mountElementId }), }; if (isProd) { @@ -61,8 +60,7 @@ export default async function createHtmlWebpackConfig({ ...config.html, title: route?.meta?.title || config.html.title || 'fes.js', filename: _fileName, - templateParameters: resolveDefine(config, true), - mountElementId: config.mountElementId + templateParameters: Object.assign(resolveDefine(config, true), { mountElementId: config.mountElementId }) }; webpackConfig .plugin(_fileName)