Paths are incorrect, when custom styleguide path is provided
As we talked, when custom styleguide path is provided, paths are incorrect in this case.
We should make same paths for styleguide web and back-end parts, now they are interpreted differently.
styleguide index.html should be considered as a root.
Glad to see that I'm not the only one having this problem. Anyone found a fix for this?
Is anyone having issues where you haven't included your styleguide folder in the root of the project? I have included mine as project/wwwRoot/styleguide and I'm having issues with styleguide finding the files it needs when the server is using wwwRoot as the root folder. Actually, I think I'm having the same issue as #145 so I'll post in there.
I'm a bit late to the party but you can probably get around the problem by editing your gulpfile.js like this:
var styleguide = require('devbridge-styleguide');
gulp.task('start-styleguide', function () {
styleguide.startServer({
styleguidePath: 'public/styleguide'
});
});