Skip to content

Commit

Permalink
fix(vite): misplaced semicolon (#2204)
Browse files Browse the repository at this point in the history
  • Loading branch information
StarLederer committed Feb 17, 2023
1 parent 3bbd6df commit 67208a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vite/src/modes/global/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export function GlobalModeDevPlugin({ uno, tokens, tasks, flushTasks, affectedMo

const { hash, css } = await generateCSS(layer)
// add hash to the chunk of CSS that it will send back to client to check if there is new CSS generated
return `__uno_hash_${hash}{--:''};${css}`
return `__uno_hash_${hash}{--:'';}${css}`
},
},
{
Expand Down

0 comments on commit 67208a4

Please sign in to comment.