diff --git a/app/templates/gulp/_styles.js b/app/templates/gulp/_styles.js index fc43b4a7..6dab7ad8 100644 --- a/app/templates/gulp/_styles.js +++ b/app/templates/gulp/_styles.js @@ -32,8 +32,8 @@ gulp.task('styles', function () { var injectOptions = { transform: function(filePath) { - filePath = filePath.replace(path.join(conf.paths.src, '/app/'), ''); - return '@import \'' + filePath + '\';'; + filePath = filePath.replace(conf.paths.src + '/app/', ''); + return '@import "' + filePath + '";'; }, starttag: '// injector', endtag: '// endinjector',