I have Ember-CLI-application with a few thousand static assets (~1GB) and my build time is now about 30sec. I have tried in my Brocfile.js without success:
var app = new EmberApp({
fingerprint: {
enabled: false,
exclude: ['large_folder']
}
});
Build time with assets: TreeMerger | 29738ms / without: TreeMerger | 9182ms.
Any ideas how to speed up the build? (Ember-CLI 0.1.7)