From a64f6539a2e263e30806c21df4cc625d2bf7869a Mon Sep 17 00:00:00 2001 From: MiniDigger | Martin Date: Sun, 8 Jan 2023 15:29:51 +0100 Subject: [PATCH] feat(frontend): enable source maps --- frontend/nuxt.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/nuxt.config.ts b/frontend/nuxt.config.ts index 2a13a60fb..8c3730999 100644 --- a/frontend/nuxt.config.ts +++ b/frontend/nuxt.config.ts @@ -81,6 +81,10 @@ export default defineNuxtConfig({ preset: "node-cluster", compressPublicAssets: true, }, + sourcemap: { + server: true, + client: true, + }, vue: { compilerOptions: { isCustomElement: (tag) => ["lottie-player"].includes(tag),