Is there a way to exclude certain files or directories from the public directory to be minified/uglified when building for productions?
It’s quite annoying to have some hard references to assets being broken because the minify/uglify process changes the file names. Right now, after a production build, I remove the randomized code from those file names, which is a painstaking task.
If you’re using EmberCLI, it’s supposed to accept an option for excluding/disabling fingerprinting ( [CLI Fingerprint] [1]). Examples taken from the link.
var app = new EmberApp({
fingerprint: {
enabled: false
}
});
```
or
```
var app = new EmberApp({
fingerprint: {
exclude: ['fonts/169929'],
prepend: 'https://subdomain.cloudfront.net/'
}
});
```
Also, since you mention minify/uglify specifically