You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've discussed a similar issue, of where it would be nice to process some includes, locally, and then also have some includes be parsed from a remote source. I think that allowing an array of baseDir, similar, to grunt-connect, would be a good solution. Allowing the directories to be processed in order or priority.
I'd like to be able to load SSI templates from the web instead of it being relative to my local files.
Here is a sample of what i was thinking but open to other ideas:
ssi: {
options: {
cache: 'all',
baseDir: 'http://sample.com'
},
myTarget: {
files: [{
expand: true,
src: '**/index.html',
ext: '.html'
}]
}
},
The text was updated successfully, but these errors were encountered: