Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions packages/vite/src/node/plugins/css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2759,8 +2759,11 @@ async function compileLightningCSS(
? config.css?.lightningcss?.cssModules ?? true
: undefined,
})

let css = res.code.toString()
// https://github.com/vitejs/vite/pull/17301
// NodeJS res.code = Buffer
// Deno res.code = Uint8Array
// For correct handle compiled css need to use TextDecoder
let css = new TextDecoder().decode(res.code)
for (const dep of res.dependencies!) {
switch (dep.type) {
case 'url':
Expand Down