File tree Expand file tree Collapse file tree
dev-packages/e2e-tests/test-applications/vinext-app Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 "scripts" : {
66 "dev" : " vinext dev" ,
77 "build" : " vinext build" ,
8- "start" : " vinext start --port 3000 " ,
8+ "start" : " vinext start --port 3030 " ,
99 "test" : " playwright test" ,
1010 "test:build" : " pnpm install && pnpm build" ,
1111 "test:assert" : " pnpm test"
1212 },
1313 "dependencies" : {
1414 "@sentry/vinext" : " latest || *" ,
15- "react" : " ^19.0.0" ,
16- "react-dom" : " ^19.0.0" ,
17- "vinext" : " latest"
15+ "react" : " ^19.2.4" ,
16+ "react-dom" : " ^19.2.4"
1817 },
1918 "devDependencies" : {
2019 "@playwright/test" : " ~1.56.0" ,
2120 "@sentry-internal/test-utils" : " link:../../../test-utils" ,
21+ "@vitejs/plugin-rsc" : " ^0.5.20" ,
2222 "typescript" : " ~5.5.0" ,
23- "vite" : " ^7.0.0"
23+ "vinext" : " ^0.0.19" ,
24+ "vite" : " ^7.3.1"
2425 },
2526 "volta" : {
2627 "extends" : " ../../package.json" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { getPlaywrightConfig } from '@sentry-internal/test-utils';
22
33const config = getPlaywrightConfig ( {
44 startCommand : `pnpm start` ,
5- port : 3000 ,
5+ port : 3030 ,
66} ) ;
77
88export default config ;
Original file line number Diff line number Diff line change 88 "esModuleInterop" : true ,
99 "skipLibCheck" : true
1010 },
11- "include" : [" src/**/*" ]
11+ "include" : [" src/**/*" , " *.ts " , " *.mts " ]
1212}
Original file line number Diff line number Diff line change 1+ import { defineConfig } from 'vite' ;
2+ import vinext from 'vinext' ;
3+ import { sentryVinext } from '@sentry/vinext/vite' ;
4+
5+ export default defineConfig ( {
6+ plugins : [ vinext ( ) , sentryVinext ( ) ] ,
7+ } ) ;
You can’t perform that action at this time.
0 commit comments