user391986
user391986

Reputation: 30906

ember-cli disable file versioning in production build

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

Answers (1)

blessanm86
blessanm86

Reputation: 31779

Edit you brocfile like below.

var app = new EmberApp({
  fingerprint: {
    enabled: false
  }
});

Upvotes: 3

Related Questions