Skip to content

Commit 5e8664c

Browse files
committed
s/index.ts/withSentryConfig.ts
1 parent 9e6fd1a commit 5e8664c

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

packages/nextjs/src/index.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ const deprecatedIsBuild = (): boolean => isBuild();
145145
export { deprecatedIsBuild as isBuild };
146146

147147
export type { SentryWebpackPluginOptions } from './config/types';
148-
export { withSentryConfig } from './config';
148+
export { withSentryConfig } from './config/withSentryConfig';
149149
export {
150150
withSentryGetServerSideProps,
151151
withSentryGetStaticProps,

packages/nextjs/test/config/testUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { WebpackPluginInstance } from 'webpack';
22

3-
import { withSentryConfig } from '../../src/config';
43
import {
54
BuildContext,
65
EntryPropertyFunction,
@@ -10,6 +9,7 @@ import {
109
WebpackConfigObject,
1110
} from '../../src/config/types';
1211
import { constructWebpackConfigFunction, SentryWebpackPlugin } from '../../src/config/webpack';
12+
import { withSentryConfig } from '../../src/config/withSentryConfig';
1313
import { defaultsObject, runtimePhase } from './fixtures';
1414

1515
/**

packages/nextjs/test/types/next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { NextConfig } from 'next';
22

3-
import { withSentryConfig } from '../../src/config';
3+
import { withSentryConfig } from '../../src/config/withSentryConfig';
44

55
const config: NextConfig = {
66
hideSourceMaps: true,

0 commit comments

Comments
 (0)