You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Source maps generated by Vite are only for the Nuxt-part of the
application whereas source maps generated by Rollup are only for the
Nitro-part of the application. The Nuxt-part of the application has some
overlap with the Nitro-part and so it **would** be nice to specify the
client/server folder in the `assets` option, but the output is different
for every Nitro preset (the files are always located under a different
path).
Should fix#13703
// The server/client files are in different places depending on the nitro preset (e.g. '.output/server' or '.netlify/functions-internal/server')
71
+
// We cannot determine automatically how the build folder looks like (depends on the preset), so we have to accept that sourcemaps are uploaded multiple times (with the vitePlugin for Nuxt and the rollupPlugin for Nitro).
72
+
// If we could know where the server/client assets are located, we could do something like this (based on the Nitro preset): isNitro ? ['./.output/server/**/*'] : ['./.output/public/**/*'],
0 commit comments