Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Turbopack: fix issue source location for special exports (#69132)
Before: ``` ✓ Compiled / in 2.4s ⚠ ./bench/basic-app/app/page.js:7:25 Unable to parse config export in source file1 5 | } 6 | > 7 | export const dynamic = 'force-dynamicc' | ^^^^^^^^^^^^^^^ > 8 | | ^ ``` After: ``` ⚠ ./bench/basic-app/app/page.js:7:24 Unable to parse config export in source file1 5 | } 6 | > 7 | export const dynamic = 'force-dynamicc' | ^^^^^^^^^^^^^^^^ 8 | ```
- Loading branch information