File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed
dev-packages/e2e-tests/test-applications Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 11/** @type {import("next").NextConfig } */
22const config = { } ;
33
4- import { withSentryConfig } from '@sentry/nextjs' ;
4+ const { withSentryConfig } = require ( '@sentry/nextjs' ) ;
55
6- export default withSentryConfig ( config , {
6+ module . exports = withSentryConfig ( config , {
77 disableLogger : true ,
88} ) ;
Original file line number Diff line number Diff line change 22 "name" : " next-orpc" ,
33 "version" : " 0.1.0" ,
44 "private" : true ,
5- "type" : " module" ,
65 "scripts" : {
76 "build" : " next build" ,
87 "dev" : " next dev -p 3030" ,
Original file line number Diff line number Diff line change 1- await import ( './src/env.js' ) ;
1+ require ( './src/env.js' ) ;
22
33/** @type {import("next").NextConfig } */
44const config = { } ;
55
6- import { withSentryConfig } from '@sentry/nextjs' ;
6+ const { withSentryConfig } = require ( '@sentry/nextjs' ) ;
77
8- export default withSentryConfig ( config , {
8+ module . exports = withSentryConfig ( config , {
99 disableLogger : true ,
1010 silent : true ,
1111} ) ;
Original file line number Diff line number Diff line change 22 "name" : " t3" ,
33 "version" : " 0.1.0" ,
44 "private" : true ,
5- "type" : " module" ,
65 "scripts" : {
76 "build" : " next build" ,
87 "clean" : " npx rimraf node_modules pnpm-lock.yaml" ,
You can’t perform that action at this time.
0 commit comments