We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31a299b commit 6aab772Copy full SHA for 6aab772
1 file changed
gulpfile.js
@@ -215,8 +215,10 @@ var fnInject = function (path) {
215
js : (config.vendor_files.js).concat(config.build + '/+(app|common)/**/*.module.js').concat(config.build + '/+(app|common)/**/*.js')
216
};
217
218
- return gulp.src(inject.css.concat(inject.js), { read: false })
219
- .pipe(plugins.inject(path, {
+ var sources = gulp.src(inject.css.concat(inject.js), { read: false });
+
220
+ return gulp.src(path)
221
+ .pipe(plugins.inject(sources, {
222
addRootSlash: false,
223
ignorePath: ['/', config.build + '/']
224
}))
0 commit comments