@shyann
To set generate_sourcemap
to false in Vite, you can add the following configuration in your vite.config.js file:
1 2 3 4 5 |
module.exports = { build: { sourcemap: false } } |
This will disable source map generation when building your project with Vite.