We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bbd000 commit 922ad2dCopy full SHA for 922ad2d
packages/vite/src/node/plugins/css.ts
@@ -10,7 +10,7 @@ import type {
10
OutputAsset,
11
OutputChunk,
12
RenderedChunk,
13
- RenderedModule,
+ // RenderedModule,
14
RollupError,
15
SourceMapInput,
16
} from 'rolldown'
@@ -106,6 +106,13 @@ import {
106
import type { ESBuildOptions } from './esbuild'
107
import { getChunkOriginalFileName } from './manifest'
108
109
+// TODO: export from rolldown
110
+type RenderedModule = {
111
+ readonly code: string | null
112
+ renderedLength: number
113
+ renderedExports: string[]
114
+}
115
+
116
const decoder = new TextDecoder()
117
// const debug = createDebugger('vite:css')
118
0 commit comments