Problems Running PageBuilder Engine In My Local Environment Following a PageBuilder Release
Symptoms
Unable to run local environment for development immediately following the latest PageBuilder Engine release
Running
npm fusion start
produces a variety of errors in the consoleFUSION_RELEASE
variable is not set locally or is set tolatest
Cause
If you do not set FUSION_RELEASE
or is set to latest
, the latest release will be used which may not be compatible with your environment. For example, if your code has not been upgraded to be compatible with 4.0
, you would want to set FUSION_RELEASE=3.X.X
.
Solution
Set the local environment variable to this:
FUSION_RELEASE=<the dev engine version you usually deploy with>
in.env
Run
npm fusion start
again