This is a Vite plugin that simplifies uploading the sourcemaps, generated from a Vite build, to Rollbar.
Install the plugin with npm:
npm install vite-plugin-rollbar --save-dev
An example vite.config.js:
// vite.config.ts
// other declarations
import viteRollbar from 'vite-plugin-rollbar'
/*
Configure Rollbar plugin
*/
const rollbarConfig = {
accessToken: '<SECRET_TOKEN_HERE>',
version: '1.0',
baseUrl: 'yourwebsite.com',
silent: true,
}
export default defineConfig({
// other options
plugins: [ viteRollbar(rollbarConfig) ],
build: {
// Required: tells Vite to create source maps
sourcemap: true,
}
})