JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 9778
  • Score
    100M100P100Q132064F
  • License MIT

A Vite plugin to upload sourcemaps to Rollbar after build.

Package Exports

  • vite-plugin-rollbar

Readme

Plugin to integrate Vite ⚡️ with Rollbar

Version License: MIT GitHub issues

This is a Vite plugin that simplifies uploading the sourcemaps, generated from a Vite build, to Rollbar.

Installation

Install the plugin with npm:

npm install vite-plugin-rollbar --save-dev

Basic Usage

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',
  ignoreUploadErrors: true,
  silent: true,
}

export default defineConfig({
  // other options
  plugins: [ viteRollbar(rollbarConfig) ],
  build: {
    // Required: tells Vite to create source maps
    sourcemap: true,
  }
})