Reputation: 30906
When I run ember build --production
it adds versioning to each file type. This is a problem for me as I have a compilation script that compiles the ember up then takes the file out for further processing.
How can I disable versioning of file names in production?
Upvotes: 4
Views: 527
Reputation: 31779
Edit you brocfile like below.
var app = new EmberApp({
fingerprint: {
enabled: false
}
});
Upvotes: 3