Skip to content

Commit 31de764

Browse files
authoredOct 11, 2024··
another attempt to fix Module not found: Can't resolve 'module' (#3349)
* aa * aa * remove unneeded * prettier
1 parent 7aef14e commit 31de764

File tree

4 files changed

+24
-42
lines changed

4 files changed

+24
-42
lines changed
 

‎.changeset/plenty-windows-occur.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
'nextra': patch
3+
---
4+
5+
another attempt to fix:
6+
7+
```
8+
Failed to compile.
9+
10+
./node_modules/typescript/lib/typescript.js
11+
Module not found: Can't resolve 'module'
12+
```

‎packages/nextra/src/server/compile.ts

+1-26
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ export async function compileMdx(
158158
}
159159

160160
const isRemoteContent = outputFormat === 'function-body'
161-
const transformers = await getTransformers()
162161

163162
const compiler =
164163
!useCachedCompiler || isRemoteContent
@@ -205,29 +204,6 @@ export async function compileMdx(
205204
throw error
206205
}
207206

208-
async function getTransformers() {
209-
// Disable twoslash in browser
210-
if (typeof window !== 'undefined') {
211-
return []
212-
}
213-
214-
// TODO: For some reason I get Error: Cannot find module 'path' in remote content,
215-
// disable twoslash temporarily
216-
if (isRemoteContent) {
217-
return []
218-
}
219-
const { rendererRich, transformerTwoslash } = await import(
220-
'@shikijs/twoslash'
221-
)
222-
223-
return [
224-
transformerTwoslash({
225-
renderer: rendererRich(),
226-
explicitTrigger: true
227-
})
228-
]
229-
}
230-
231207
function createCompiler(): Processor {
232208
return createProcessor({
233209
jsx,
@@ -249,7 +225,7 @@ export async function compileMdx(
249225
] satisfies Pluggable,
250226
isRemoteContent && remarkRemoveImports,
251227
remarkFrontmatter, // parse and attach yaml node
252-
[remarkMdxFrontMatter] satisfies Pluggable,
228+
remarkMdxFrontMatter,
253229
remarkGfm,
254230
format !== 'md' &&
255231
([
@@ -301,7 +277,6 @@ export async function compileMdx(
301277
rehypePrettyCode,
302278
{
303279
...DEFAULT_REHYPE_PRETTY_CODE_OPTIONS,
304-
transformers,
305280
...rehypePrettyCodeOptions
306281
}
307282
] as any,

‎packages/nextra/src/server/index.ts

-7
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,6 @@ const nextra: Nextra = nextraConfig => {
192192
test: new RegExp(`pages${RE_SEP}_app\\.`),
193193
issuer: request => !request,
194194
use: defaultLoaderOptions
195-
},
196-
{
197-
test: new RegExp(
198-
`@typescript${RE_SEP}vfs${RE_SEP}dist${RE_SEP}vfs\\.`
199-
),
200-
issuer: request => !!request,
201-
use: defaultLoaderOptions
202195
}
203196
)
204197

‎packages/nextra/src/server/loader.ts

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import path from 'node:path'
2+
import { rendererRich, transformerTwoslash } from '@shikijs/twoslash'
23
import slash from 'slash'
34
import type { LoaderContext } from 'webpack'
45
import type { LoaderOptions, PageOpts } from '../types'
@@ -83,14 +84,6 @@ export async function loader(
8384

8485
const currentPath = slash(mdxPath)
8586

86-
if (currentPath.includes('@typescript/vfs/dist/vfs.')) {
87-
// Fixes https://github.com/microsoft/TypeScript-Website/pull/3022
88-
// Fixes https://github.com/shuding/nextra/issues/3322#issuecomment-2384046618
89-
return source
90-
.replace(/String\.fromCharCode\(112, ?97, ?116, ?104\)/, '"path"')
91-
.replace(/String\.fromCharCode\(102, ?115\)/, '"fs"')
92-
}
93-
9487
if (currentPath.includes('/pages/api/')) {
9588
logger.warn(
9689
`Ignoring ${currentPath} because it is located in the "pages/api" folder.`
@@ -164,7 +157,16 @@ ${themeConfigImport && '__nextra_internal__.themeConfig = __themeConfig'}`
164157
...mdxOptions,
165158
jsx: true,
166159
outputFormat: 'program',
167-
format: 'detect'
160+
format: 'detect',
161+
rehypePrettyCodeOptions: {
162+
transformers: [
163+
transformerTwoslash({
164+
renderer: rendererRich(),
165+
explicitTrigger: true
166+
})
167+
],
168+
...mdxOptions?.rehypePrettyCodeOptions
169+
}
168170
},
169171
readingTime: _readingTime,
170172
defaultShowCopyCode,

0 commit comments

Comments
 (0)
Please sign in to comment.