Build cache issue
-
I usually build for prod locally using
quasar build -m ssr
I just noticed a bug where some old configuration ( some old constant values) still present in the final build output. I could not reproduce the issue locally as it happens only in the prod server. I found that the terser cache is not clear and had been stale for many builds e.g. paths
node_modules/.cache/terser-webpack-plugin/content-v2/sha512/57/35/70a7c3ce0b9687dd572f83d6adf9c46a9107ff7c13ac4f514a9caeeacfd397f61169b8d91eb989142a33c84dbe6307997b5c75ba9c45bdd5584ec7a331a6
Finally found out using grep that these files contained stale data and somehow become part of the build. I fixed my issue by clearing node modules folder. Want to know if this is common or we can do something to clear this on new builds.
Thanks
-
you could try
quasar clean
before a build.