According to the brunch documentation the property "conventions.assets" in the config file should be a regexp, but I'm trying to include the following:
conventions: {
assets: /^app\/.*\.html/
}
in order to add all the htmls into the public folder. (I know I can create an assets folder and include all the things there, but it's not possible by the moment according the structure we've agreed).
I think this property expect a directory, in this case could I fix this value in order to reach my goal?, with a function maybe?
Finally I could do that overriding the method what the property "assets" accepts.