fix: only generate sourcemap in development

This commit is contained in:
Daniel Roe 2023-02-12 11:22:43 +01:00
parent a9427e2ea0
commit c2ffdcf78b
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ export default defineNuxtConfig({
crawlLinks: true,
},
},
sourcemap: !isDevelopment,
sourcemap: isDevelopment,
hooks: {
'nitro:config': function (config) {
const nuxt = useNuxt()