Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵月辉
/
fastgpt-migrated
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
93955e04
authored
Aug 05, 2026
by
Xianquan
Committed by
GitHub
Aug 05, 2026
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: swc helpers (#7457)
parent
6fe7cedf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletions
+9
-1
pro
+1
-1
projects/app/next.config.ts
+4
-0
projects/marketplace/next.config.ts
+4
-0
No files found.
pro
@
52a34d74
Subproject commit
243c9b1ce62171b3c1073b18257ba116349b1239
Subproject commit
52a34d749dbea06819819f69a881d1eb6af61df8
projects/app/next.config.ts
View file @
93955e04
...
@@ -89,6 +89,10 @@ const nextConfig: NextConfig = {
...
@@ -89,6 +89,10 @@ const nextConfig: NextConfig = {
turbopackFileSystemCacheForDev
:
false
turbopackFileSystemCacheForDev
:
false
},
},
outputFileTracingRoot
:
path
.
join
(
__dirname
,
'../../'
),
outputFileTracingRoot
:
path
.
join
(
__dirname
,
'../../'
),
outputFileTracingIncludes
:
{
// Node 24 resolves @swc/helpers through module-sync, but Next 16.3 does not trace all ESM helpers.
'*'
:
[
'../../node_modules/.pnpm/@swc+helpers@*/node_modules/@swc/helpers/esm/**/*'
]
},
// Exclude build-time-only packages from standalone output file tracing
// Exclude build-time-only packages from standalone output file tracing
outputFileTracingExcludes
:
{
outputFileTracingExcludes
:
{
'*'
:
[
'*'
:
[
...
...
projects/marketplace/next.config.ts
View file @
93955e04
...
@@ -45,6 +45,10 @@ const nextConfig: NextConfig = {
...
@@ -45,6 +45,10 @@ const nextConfig: NextConfig = {
}
}
];
];
},
},
outputFileTracingIncludes
:
{
// Node 24 resolves @swc/helpers through module-sync, but Next 16.3 does not trace all ESM helpers.
'*'
:
[
'../../node_modules/.pnpm/@swc+helpers@*/node_modules/@swc/helpers/esm/**/*'
]
},
turbopack
:
{
turbopack
:
{
root
:
monorepoRoot
,
root
:
monorepoRoot
,
resolveAlias
:
{
resolveAlias
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment