mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-20 12:19:29 -04:00
19 lines
423 B
TypeScript
19 lines
423 B
TypeScript
import { sentryVitePlugin } from '@sentry/vite-plugin';
|
|
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
build: {
|
|
target: 'esnext',
|
|
sourcemap: true, // Enable source maps for production builds
|
|
},
|
|
plugins: [
|
|
react(),
|
|
sentryVitePlugin({
|
|
org: 'hand-dot',
|
|
project: 'playground-pdfme',
|
|
}),
|
|
],
|
|
});
|