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?
Edit you brocfile like below.
var app = new EmberApp({
fingerprint: {
enabled: false
}
});