simple-gulp-template
simple-gulp-template copied to clipboard
JS errors for lib files
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}