From a5574e1a1a3415e277f42c629535e3dccfd45607 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Tue, 23 Apr 2024 21:27:04 +0200 Subject: [PATCH] fix: include argon2 in experimental output file tracing --- next.config.mjs | 3 +++ public/mockServiceWorker.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 3d58d900..15ceabbf 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -7,6 +7,9 @@ const nextConfig = { transpilePackages: ['@runtipi/shared'], experimental: { serverComponentsExternalPackages: ['bullmq'], + outputFileTracingIncludes: { + '/login': ['./node_modules/argon2/**'], + }, }, async rewrites() { return [ diff --git a/public/mockServiceWorker.js b/public/mockServiceWorker.js index 2d139dac..e891a685 100644 --- a/public/mockServiceWorker.js +++ b/public/mockServiceWorker.js @@ -8,7 +8,7 @@ * - Please do NOT serve this file on production. */ -const PACKAGE_VERSION = '2.2.13' +const PACKAGE_VERSION = '2.2.14' const INTEGRITY_CHECKSUM = '26357c79639bfa20d64c0efca2a87423' const IS_MOCKED_RESPONSE = Symbol('isMockedResponse') const activeClientIds = new Set()