From fd05d3c6149329afebeeea06875c9c9a0a59dd21 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sat, 4 Jul 2026 00:02:56 +0700 Subject: [PATCH] fix(api): enable package.json generation by default --- apps/api/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/webpack.config.js b/apps/api/webpack.config.js index fe68bb87f..d5b07e73c 100644 --- a/apps/api/webpack.config.js +++ b/apps/api/webpack.config.js @@ -7,6 +7,7 @@ const configValues = { default: { compiler: 'tsc', deleteOutputPath: false, + generatePackageJson: true, main: './src/main.ts', outputPath: 'dist/apps/api', outputHashing: 'none', @@ -15,7 +16,6 @@ const configValues = { tsConfig: './tsconfig.app.json' }, production: { - generatePackageJson: true, optimization: true, extractLicenses: true, inspect: false,