diff --git a/build/compiler.js b/build/compiler.js index 6aa6c582..5af48f08 100644 --- a/build/compiler.js +++ b/build/compiler.js @@ -29,10 +29,12 @@ const lessCompiler = dist => .pipe( insert.transform((contents, file) => { if (!file.path.includes('packages' + path.sep + 'common')) { - const relativePath = path.relative( - path.normalize(`${file.path}${path.sep}..`), - baseCssPath - ); + const relativePath = path + .relative( + path.normalize(`${file.path}${path.sep}..`), + baseCssPath + ) + .replace(/\\/g, '/'); contents = `@import '${relativePath}';${contents}`; } return contents;