Skip to content

Commit

Permalink
chore: fix missing labs components css on Windows (#20336)
Browse files Browse the repository at this point in the history
  • Loading branch information
userquin authored Aug 15, 2024
1 parent 4c1f4b6 commit ff80220
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/vuetify/build/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,7 @@ export default [
})

// Individual CSS files
styleNodes = styleNodes.filter(node => {
return node.id.startsWith(labsDir)
}
);
styleNodes = styleNodes.filter(node => path.normalize(node.id).startsWith(labsDir));
for (const { id, content } of styleNodes) {
const relativePath = path.relative(srcDir, id)
const out = path.parse(path.join(libDir, relativePath))
Expand Down

0 comments on commit ff80220

Please sign in to comment.