Removed image hashing on build?

Is there a way to stop the images from getting a hashed suffix on production builds? I’m loading static images from a json file and getting 404s on the images.

You can try with this:

  var app = new EmberApp(defaults, {
    fingerprint: {
      exclude: ['some-asset-dir/']
    }
  });

That worked! Thanks!