Skip to content

Commit

Permalink
fix(distro): copy assets on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfromme committed Apr 16, 2024
1 parent f6be969 commit c334ddb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ function copyStyles(styles) {
return copy({
targets: styles.map(function(sheet) {
return {
src: sheet.src,
dest: sheet.dest
src: sheet.src.replace(/\\/g, '/'),
dest: sheet.dest.replace(/\\/g, '/')
};
})
});
Expand Down

0 comments on commit c334ddb

Please sign in to comment.