Files
cv4/vite.config.js
User 58f85bfc22 History Links
LocalStorage for reading mode
Debugging with Sentry
2024-12-28 15:34:35 -05:00

18 lines
443 B
JavaScript

import { sentryVitePlugin } from "@sentry/vite-plugin";
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [laravel({
input: 'resources/js/app.jsx',
refresh: true,
}), react(), sentryVitePlugin({
org: "pokebeacon",
project: "cv4-react"
})],
build: {
sourcemap: true
}
});