From b6673008944040e06934d6f414fa50ede80108d9 Mon Sep 17 00:00:00 2001 From: "sosuke.iwabuchi" Date: Mon, 18 Dec 2023 16:40:33 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=93=E3=83=AB=E3=83=89=E5=AF=BE=E8=B1=A1?= =?UTF-8?q?=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 5739b31..d13677c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -14,7 +14,7 @@ const basePath = path.resolve('src', 'apps'); const env = dotenv.config().parsed // basePath配下の各ディレクトリを複数のentryとする -const entries = glob.sync('**/index.+(js|ts|tsx)', { cwd: basePath }).reduce( +const entries = glob.sync('*/index.+(js|ts|tsx)', { cwd: basePath }).reduce( (prev, file) => ({ ...prev, [path.dirname(file)]: path.resolve(basePath, file),