simple-gulp-template icon indicating copy to clipboard operation
simple-gulp-template copied to clipboard

JS errors for lib files

Open chambleton opened this issue 9 years ago • 0 comments

If you open the browser console, the lib js files are not being picked up because the path is set to the root of the site: src="/lib/..."

Changing the following line in the gulpfile resolves the issue:

{name: "bower", addPrefix: "lib"} to {name: "bower", addPrefix: "lib", addRootSlash: false}

chambleton avatar Mar 08 '16 00:03 chambleton