Skip to content

Commit 1358a3c

Browse files
authoredOct 31, 2022
chore: fix dev build replacing undefined (#10740)
1 parent ee8c7a6 commit 1358a3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/vite/src/node/server/transformRequest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { promises as fs } from 'node:fs'
22
import path from 'node:path'
33
import { performance } from 'node:perf_hooks'
44
import getEtag from 'etag'
5-
import * as convertSourceMap from 'convert-source-map'
5+
import convertSourceMap from 'convert-source-map'
66
import type { SourceDescription, SourceMap } from 'rollup'
77
import colors from 'picocolors'
88
import type { ViteDevServer } from '..'

0 commit comments

Comments
 (0)
Please sign in to comment.