Is it possible to enable sourcemaps in Vue-Vite in production environment?
I would like to use it for Bugsnag.
Can't find anything about it in the docs.
Thanks to @tony19 I could find it out:
Since vue ~2.0 it works like this:
In <projectRoot>/vite.config.js
:
/**
* @type {import('vite').UserConfig}
*/
export default {
plugins: [vue()],
build: {
sourcemap: true,
},
}