Skip to content

Commit f6945d9

Browse files
committed
fix: update import path in next-env.d.ts and standardize quotes in next.config.js
1 parent 3496bad commit f6945d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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 "./.next/types/routes.d.ts";
3+
import "./.next/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.

next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const REMOTE_PATTERNS = [
2121

2222
const config = {
2323
// Exclude jsdom and isomorphic-dompurify from bundling to fix ESM/CJS compatibility
24-
serverExternalPackages: ['jsdom', 'isomorphic-dompurify'],
24+
serverExternalPackages: ["jsdom", "isomorphic-dompurify"],
2525
// Turbopack configuration for SVGR (replaces webpack config)
2626
turbopack: {
2727
rules: {

0 commit comments

Comments
 (0)