Skip to content

Commit 8d5c1d4

Browse files
author
Mehdy Dara
committed
Merge pull request #621 from eleven-labs/fix-style-import-path
Fix import file path
2 parents 6162048 + dd91054 commit 8d5c1d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/templates/gulp/_styles.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ gulp.task('styles', function () {
3232

3333
var injectOptions = {
3434
transform: function(filePath) {
35-
filePath = filePath.replace(path.join(conf.paths.src, '/app/'), '');
36-
return '@import \'' + filePath + '\';';
35+
filePath = filePath.replace(conf.paths.src + '/app/', '');
36+
return '@import "' + filePath + '";';
3737
},
3838
starttag: '// injector',
3939
endtag: '// endinjector',

0 commit comments

Comments
 (0)