From 38d6fd69c3a058243f88d70fd95d2f93a110b1a1 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Thu, 7 Sep 2023 10:42:39 -0700 Subject: [PATCH] fix(web): namespace conflight with dynamix.file.manager --- web/nuxt.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/nuxt.config.ts b/web/nuxt.config.ts index f2b866805..4d730f0b7 100644 --- a/web/nuxt.config.ts +++ b/web/nuxt.config.ts @@ -10,7 +10,7 @@ for (const k in envConfig) { * @see alt solution https://github.com/terser/terser/issues/1001, https://github.com/terser/terser/pull/1038 */ function terserReservations (inputStr: string) { - const combinations = []; + const combinations = ['ace']; // Add 1-character combinations for (let i = 0; i < inputStr.length; i++) { @@ -27,7 +27,7 @@ function terserReservations (inputStr: string) { return combinations; } -const charsToReserve = '_$abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; +const charsToReserve = '_$abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({