I ran into a couple of issues with the getBuildId logic — see #45 and #46.
Digging into this further, I found that the build ID is only used when the inject option is set to true, but in my case it's set to false.
As a simple hot-fix I realised it's possible to skip generating the build ID entirely if we're outputting static CSS, meaning that any errors in the build ID logic are now irrelevant for my use case.
Ideally the issues with getBuildId should be fixed too, but they're a bit more involved than this simple fix.
I ran into a couple of issues with the
getBuildId
logic — see #45 and #46.Digging into this further, I found that the build ID is only used when the
inject
option is set totrue
, but in my case it's set tofalse
.As a simple hot-fix I realised it's possible to skip generating the build ID entirely if we're outputting static CSS, meaning that any errors in the build ID logic are now irrelevant for my use case.
Ideally the issues with
getBuildId
should be fixed too, but they're a bit more involved than this simple fix.