It appears that the hash of the font file is taken prior to fontmin running, so it only depends on the original source file. This means that the font file hash won't change if the app starts using more icons from the source font file.
If the project relies on the hash for caching / updating purposes this will create bugs, as the production app can reference icons which aren't in the version of the font file the user has cached.
On my project we ended up switching to a fontmin loader instead to work around the issue.
It appears that the hash of the font file is taken prior to fontmin running, so it only depends on the original source file. This means that the font file hash won't change if the app starts using more icons from the source font file.
If the project relies on the hash for caching / updating purposes this will create bugs, as the production app can reference icons which aren't in the version of the font file the user has cached.
On my project we ended up switching to a fontmin loader instead to work around the issue.