what version of node does the build use?
# seed
t
what version of node does the build use?
r
I'm not sure what the default is but you can add a seed.yml in the root of your application and set the version in a before compile hook there. E.g.
Copy code
before_compile:
  - n 14.17.4
t
sweet
f
Hey @Tyler Flint, here’s a list of build images and what’s in each - https://seed.run/docs/seed-build-images.html • General Purpose v4 has v14 • General Purpose v3 has v12 And @Ross Coundon is right on about pinning a specific node version
t
thanks Frank. Setting the specific version worked like a charm
btw, what is
n
? Is that an alias to
nvm
or something similar?
f
it’s a node version management tool https://www.npmjs.com/package/n
It let’s u switch between node versions easily.
t
nice