소스 검색

disable sourcemap because of vuetify warnings

Olivier Massot 2 년 전
부모
커밋
3558868d0a
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. 7 1
      nuxt.config.ts

+ 7 - 1
nuxt.config.ts

@@ -129,7 +129,13 @@ export default defineNuxtConfig({
                 protocol: 'wss',
                 port: 24678
             }
-        },
+        }
+    },
+    // Hide the sourcemaps warnings with vuetify
+    // @see https://github.com/vuetifyjs/vuetify-loader/issues/290#issuecomment-1435702713
+    sourcemap: {
+        server: false,
+        client: false,
     },
     i18n: {
         langDir: 'lang',