Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.04 KB

README.md

File metadata and controls

44 lines (33 loc) · 1.04 KB

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,
  }
})