We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64c4692 commit 75f2b49Copy full SHA for 75f2b49
dev-packages/e2e-tests/test-applications/browser-webworker-vite/vite.config.ts
@@ -1,9 +1,16 @@
1
import { sentryVitePlugin } from '@sentry/vite-plugin';
2
+import { resolve } from 'path';
3
import { defineConfig } from 'vite';
4
5
export default defineConfig({
6
build: {
7
sourcemap: 'hidden',
8
+ rollupOptions: {
9
+ input: {
10
+ main: resolve(__dirname, 'index.html'),
11
+ 'spotlight-env-test': resolve(__dirname, 'spotlight-env-test.html'),
12
+ },
13
14
},
15
16
plugins: [
0 commit comments