Search code examples
ember.jsember-cli

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?


Solution

  • Edit you brocfile like below.

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