vite: {
build: {
rollupOptions: {
output: {
manualChunks: (id: string) => {
console.log('manualChunks function called with id:', id)
if (id.includes('@sentry/nuxt')) {
return 'sentry'
}
return undefined
},
},
},
},
},
vite: {
build: {
rollupOptions: {
output: {
manualChunks: (id: string) => {
console.log('manualChunks function called with id:', id)
if (id.includes('@sentry/nuxt')) {
return 'sentry'
}
return undefined
},
},
},
},
},