Skip to content

Commit 0da6164

Browse files
committed
Remove unused + upgrade deps
1 parent 7056957 commit 0da6164

File tree

4 files changed

+297
-3548
lines changed

4 files changed

+297
-3548
lines changed

MyApp.Client/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
import "./dist/types/routes.d.ts";
3+
import "./dist/dev/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

MyApp.Client/next.config.mjs

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import createMDX from "@next/mdx"
2-
31
const target = process.env.ASPNETCORE_HTTPS_PORT ? `https://localhost:${process.env.ASPNETCORE_HTTPS_PORT}` :
42
process.env.ASPNETCORE_URLS ? process.env.ASPNETCORE_URLS.split(';')[0] : 'https://localhost:5001';
53

@@ -37,14 +35,4 @@ const nextConfig = {
3735
},
3836
}
3937

40-
const withMDX = createMDX({
41-
// Use string-based plugin names for Turbopack compatibility
42-
options: {
43-
remarkPlugins: ['remark-gfm'],
44-
rehypePlugins: [
45-
'rehype-prism-plus',
46-
],
47-
},
48-
})
49-
50-
export default withMDX(nextConfig)
38+
export default nextConfig

0 commit comments

Comments
 (0)