File tree 1 file changed +8
-1
lines changed
packages/vite/src/node/server
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,11 @@ export interface ViteDevServer {
229
229
opts ?: { fixStacktrace ?: boolean }
230
230
) : Promise < Record < string , any > >
231
231
/**
232
- * Fix ssr error stacktrace
232
+ * Returns a fixed version of the given stack
233
+ */
234
+ ssrRewriteStacktrace ( stack : string ) : string
235
+ /**
236
+ * Mutates the given SSR error by rewriting the stacktrace
233
237
*/
234
238
ssrFixStacktrace ( e : Error ) : void
235
239
/**
@@ -386,6 +390,9 @@ export async function createServer(
386
390
rebindErrorStacktrace ( e , stacktrace )
387
391
}
388
392
} ,
393
+ ssrRewriteStacktrace ( stack : string ) {
394
+ return ssrRewriteStacktrace ( stack , moduleGraph )
395
+ } ,
389
396
listen ( port ?: number , isRestart ?: boolean ) {
390
397
return startServer ( server , port , isRestart )
391
398
} ,
You can’t perform that action at this time.
0 commit comments